/* TELA RANKING */
.sg-screen-ranking {
    background: rgba(0, 0, 0, 0.3);
    display: table;
    padding: 40px;
    border-radius: 8px;
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(5px);
}

.sg-screen-ranking h1 {
    font-size: 28px;
    margin: 0 0 30px 0;
    color: #333;
    text-align: center;
}

.sg-ranking-table {
    margin-bottom: 30px;
    margin-top: 20px;
}

.sg-ranking-table table {
    color: white;
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.sg-ranking-table thead {
    /* Header background uses theme variable */
    background-image: linear-gradient(135deg, #364b69 40%, #21344f 100%);
}

.sg-ranking-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--mp-txt-color-green-01, #155724);
    border-bottom: 2px solid #007bff;
}

.sg-ranking-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef;
}

.sg-ranking-table tr {
    transition: background-color 0.3s;
}

.sg-ranking-table tbody tr:hover {
    background-color: rgba(0, 123, 255, 0.05);
}

.sg-ranking-current-user {
    background-color: rgb(161 174 219 / 35%);;
    font-weight: 600;
}

.sg-ranking-current-user td {
    color: #a0d7ff;
    border-bottom: 1px solid #a9a9a9;
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.9), 0px 0px 15px rgba(0, 0, 0, 0.9), 0px 0px 15px rgba(0, 0, 0, 0.9);
}

.sg-ranking-loading {
    text-align: center;
    padding: 40px;
    font-size: 16px;
    color: #666;
}

.sg-ranking-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .sg-screen-ranking {
        padding: 20px;
    }

    .sg-ranking-table th,
    .sg-ranking-table td {
        padding: 8px 10px;
        font-size: 14px;
    }
}
