/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

.notification-success {
    background: #10b981;
}

.notification-error {
    background: #ef4444;
}

.notification-info {
    background: #3b82f6;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Status and Priority Badges */
.status-badge, .priority-badge, .type-badge {
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

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

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

.status-fechado {
    background: #d1fae5;
    color: #065f46;
}

.priority-baixa {
    background: #f3f4f6;
    color: #374151;
}

.priority-media {
    background: #fef3c7;
    color: #92400e;
}

.priority-alta {
    background: #fed7d7;
    color: #c53030;
}

.priority-critica {
    background: #fecaca;
    color: #991b1b;
}

.type-user {
    background: #e0e7ff;
    color: #3730a3;
}

.type-support {
    background: #fef3c7;
    color: #92400e;
}

.type-admin {
    background: #fecaca;
    color: #991b1b;
}
