.jurusan-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
}

.jurusan-tkj {
    background: #e74c3c;
}

.jurusan-t {
    background: #3498db;
}

.jurusan-mp {
    background: #2ecc71;
}

.jurusan-ak {
    background: #f39c12;
}

.jurusan-bd {
    background: #9b59b6;
}

.jurusan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.jurusan-stat-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.jurusan-stat-card h4 {
    margin: 0 0 10px 0;
    font-size: 0.9rem;
    color: #333;
}

.jurusan-stat-card .number {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.jurusan-stat-card .label {
    font-size: 0.8rem;
    color: #666;
}

.filter-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.filter-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: end;
}

.filter-group {
    flex: 1;
    min-width: 150px;
}

.filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
}

.school-header {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.school-header h1 {
    color: #1e3c72;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.school-header .school-name {
    color: #2a5298;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.school-header .motto {
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .jurusan-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-row {
        flex-direction: column;
    }
    
    .filter-group {
        width: 100%;
    }
}