/* Estilos para notificações toast */

.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    min-width: 250px;
    max-width: 400px;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left: 4px solid #27ae60;
    color: #27ae60;
}

.toast.error {
    border-left: 4px solid #dc3545;
    color: #dc3545;
}

.toast.info {
    border-left: 4px solid #3498db;
    color: #3498db;
}

.toast.warning {
    border-left: 4px solid #f39c12;
    color: #f39c12;
}

.toast .icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.toast span {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsividade para telas menores */
@media (max-width: 480px) {
    .toast {
        right: 10px;
        left: 10px;
        bottom: 10px;
        max-width: none;
        min-width: auto;
    }
}
