.lomba-guru-container {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e8e8e8' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.lomba-guru-header {
    background: #DC2626; /* Merah Bendera */
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
    border: 2px solid white;
    box-shadow: 0 0 0 4px #DC2626;
}
.lomba-guru-header h1 {
    margin: 0;
    font-size: 2.8em;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.standings-table td strong {
    font-size: 1.1em;
}

.rank-badge {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: #f1f1f1;
    font-weight: bold;
}
tbody tr:first-child .rank-badge {
    background-color: #ffd700;
    color: #333;
}

/* Hasil Pertandingan */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.result-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}
.result-card h3 {
    margin-top: 0;
    color: #DC2626;
}
.result-card ol {
    padding-left: 20px;
    margin: 0;
}
.result-card li {
    font-size: 1.1em;
    padding: 5px 0;
}

/* Daftar Tim */
.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
.team-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}
.team-card:hover {
    transform: translateY(-5px);
}
.team-header {
    color: white;
    padding: 15px;
    text-align: center;
}
.team-header h3 {
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.team-members {
    padding: 15px;
    background: white;
}
.team-members ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.team-members li {
    padding: 5px 0;
    border-bottom: 1px solid #f1f1f1;
}
.team-members li:last-child {
    border-bottom: none;
}

/* Warna Tim */
.team-melon .team-header { background-color: #84CC16; } /* Hijau Melon */
.team-semangka .team-header { background-color: #22C55E; } /* Hijau Semangka */
.team-jeruk .team-header { background-color: #F97316; } /* Oranye Jeruk */
.team-anggur .team-header { background-color: #8B5CF6; } /* Ungu Anggur */