/* Customer Tournament Status Translations Styles */
.status-pending {
    color: #6c757d;
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

.status-drawn {
    color: #004085;
    background-color: #cce5ff;
    border-color: #004085;
}

.status-in-progress {
    color: #004d40;
    background-color: #d4edda;
    border-color: #004d40;
}

.status-paused {
    color: #856404;
    background-color: #fff3cd;
    border-color: #856404;
}

.status-cancelled {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #721c24;
}

.status-finished {
    color: #155724;
    background-color: #d4edda;
    border-color: #155724;
}

.status-unknown {
    color: #6c757d;
    background-color: #f8f9fa;
    border-color: #dee2e6;
}

/* Customer Tournament List Status */
.customer-tournament-list .status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid;
    white-space: nowrap;
    margin-bottom: 8px;
}

.customer-tournament-list .status-badge .status-icon {
    margin-right: 4px;
    font-size: 10px;
    opacity: 0.8;
}

/* Customer Dashboard Status */
.customer-dashboard .status-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid;
    white-space: nowrap;
    margin-right: 8px;
}

.customer-dashboard .status-badge .status-icon {
    margin-right: 6px;
    font-size: 12px;
}

/* Customer Tournament Card Status */
.customer-tournament-card .status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    display: flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid;
    white-space: nowrap;
}

.customer-tournament-card .status-badge .status-icon {
    margin-right: 4px;
    font-size: 9px;
}

/* Customer Tournament Manage Status */
.customer-tournament-manage .status-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid;
    white-space: nowrap;
    margin-bottom: 12px;
}

.customer-tournament-manage .status-badge .status-icon {
    margin-right: 8px;
    font-size: 14px;
}

/* Status Container Styles */
.status-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-label {
    font-weight: 600;
}

.status-description {
    font-size: 12px;
    color: #6c757d;
    margin-top: 4px;
}

/* Hover Effects */
.status-badge:hover {
    opacity: 0.8;
    transition: opacity 0.2s ease;
    transform: translateY(-1px);
}

/* Active Status Indicator */
.status-badge.active {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Status Filter in Customer Area */
.customer-status-filter .status-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #dee2e6;
    transition: background-color 0.2s ease;
}

.customer-status-filter .status-option:hover {
    background-color: #f8f9fa;
}

.customer-status-filter .status-option:last-child {
    border-bottom: none;
}

.customer-status-filter .status-icon {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 14px;
}

.customer-status-filter .status-label {
    flex: 1;
    font-weight: 500;
}

/* Customer Tournament Statistics */
.customer-tournament-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.customer-tournament-stats .status-stat {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.customer-tournament-stats .status-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.customer-tournament-stats .status-count {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #212529;
}

.customer-tournament-stats .status-label {
    font-size: 13px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .customer-tournament-list .status-badge {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .customer-tournament-list .status-badge .status-icon {
        font-size: 9px;
        margin-right: 3px;
    }
    
    .customer-dashboard .status-badge {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .customer-dashboard .status-badge .status-icon {
        font-size: 10px;
        margin-right: 4px;
    }
    
    .customer-tournament-card .status-badge {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .customer-tournament-card .status-badge .status-icon {
        font-size: 8px;
        margin-right: 3px;
    }
    
    .customer-tournament-manage .status-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .customer-tournament-manage .status-badge .status-icon {
        font-size: 12px;
        margin-right: 6px;
    }
    
    .customer-tournament-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .customer-tournament-stats .status-count {
        font-size: 24px;
    }
    
    .customer-tournament-stats .status-label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .customer-tournament-stats {
        grid-template-columns: 1fr;
    }
    
    .customer-tournament-stats .status-count {
        font-size: 20px;
    }
}
