.jrs-site-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    position: relative;
}

.jrs-site-card h3 a {
    color: #2d3748;
    text-decoration: none;
    font-size: 1.25rem;
}

.jrs-site-desc {
    color: #718096;
    margin: 8px 0 16px;
}

.jrs-already-rated {
    color: #48bb78;
    font-weight: bold;
    margin-top: 12px;
}

.jrs-rating-category {
    margin-bottom: 12px;
}

.jrs-rating-category label {
    display: inline-block;
    width: 180px;
    font-weight: 600;
    color: #2d3748;
}

.jrs-stars {
    display: inline-block;
}

.jrs-star {
    font-size: 24px;
    color: #e2e8f0;
    cursor: pointer;
    transition: color 0.2s;
    user-select: none;
}

.jrs-star:hover,
.jrs-star.hover,
.jrs-star.selected {
    color: #FFD700;
}

.jrs-total-score {
    margin: 12px 0;
    font-weight: bold;
    color: #2d3748;
}

.jrs-submit-btn {
    background: #3182ce;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
}

.jrs-submit-btn:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
}

/* Results */
.jrs-results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.jrs-results-table th,
.jrs-results-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.jrs-results-table th {
    background: #f7fafc;
    font-weight: 600;
}

.jrs-filters {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.jrs-filter-group label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    color: #2d3748;
}

.jrs-filter-group input,
.jrs-filter-group select {
    padding: 6px 10px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    min-width: 200px;
}