/* LEADER CLUB Styles */

/* Loading Spinner */
.leader-table .loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    color: #cccccc;
    font-size: 0.9rem;
}

.leader-table .loading-spinner i {
    color: #ff6b6b;
    font-size: 1rem;
}

/* Error Message */
.leader-table .error-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    color: #ff4444;
    font-size: 0.85rem;
    text-align: center;
}

.leader-table .error-message i {
    font-size: 1rem;
}

/* Leader Club Table */
.leader-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.leader-table th {
    background: rgba(255, 255, 255, 0.05);
    color: #ff6b6b;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 12px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.leader-table td {
    color: #ffffff;
    font-size: 0.85rem;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.leader-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.leader-table tr:last-child td {
    border-bottom: none;
}

/* Rank Column */
.leader-table td:first-child {
    color: #ff6b6b;
    font-weight: 600;
    text-align: center;
    width: 40px;
}

/* Guild Name Column */
.leader-table td:nth-child(2) {
    font-weight: 500;
    text-align: center;
}

/* Room Column */
.leader-table td:last-child {
    color: #cccccc;
    text-align: center;
    width: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .leader-table th,
    .leader-table td {
        padding: 6px 8px;
        font-size: 0.8rem;
    }
    
    .leader-table .loading-spinner,
    .leader-table .error-message {
        padding: 15px;
        font-size: 0.8rem;
    }
}

 