/* Container principal */
.notify-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

/* Toast individual */
.notify-toast {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 10px;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateX(120%);
    transition: transform 0.3s ease;
}

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

/* Conteúdo do toast */
.notify-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notify-content i {
    font-size: 1.25rem;
}

.notify-content span {
    font-size: 0.95rem;
    color: var(--text-color);
}

/* Botão de fechar */
.notify-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--text-muted);
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.notify-close:hover {
    opacity: 1;
}

/* Tipos de notificação */
.notify-toast.success {
    border-left: 4px solid #4CAF50;
}
.notify-toast.success i {
    color: #4CAF50;
}

.notify-toast.error {
    border-left: 4px solid #f44336;
}
.notify-toast.error i {
    color: #f44336;
}

.notify-toast.warning {
    border-left: 4px solid #ff9800;
}
.notify-toast.warning i {
    color: #ff9800;
}

.notify-toast.info {
    border-left: 4px solid #2196F3;
}
.notify-toast.info i {
    color: #2196F3;
}

/* Responsividade */
@media (max-width: 480px) {
    .notify-container {
        top: auto;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .notify-toast {
        min-width: auto;
        margin-bottom: 8px;
    }
} 