/* ===== СТИЛИ СТАТУСОВ И БЕЙДЖЕЙ ===== */

/* Основные бейджи статусов */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Цветовые схемы статусов */
.status-success { 
    background: #dcfce7; 
    color: #166534; 
}

.status-warning { 
    background: #fef3c7; 
    color: #92400e; 
}

.status-danger { 
    background: #fee2e2; 
    color: #991b1b; 
}

.status-secondary { 
    background: #f3f4f6; 
    color: #374151; 
}

.status-info { 
    background: #dbeafe; 
    color: #1e40af; 
}

/* Специальный статус для просроченных задач */
.status-overdue {
    background: #fef2f2;
    color: #dc2626;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}