﻿button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    color: white;
}

.success-btn {
    background-color: #28a745;
}

.error-btn {
    background-color: #dc3545;
}

/* Container da notificação */
#notification-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.notification {
    margin-top: 20px;
    padding: 16px 24px;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-50px);
    animation: slideDown 0.4s ease forwards, fadeOut 0.5s ease 2.5s forwards;
    pointer-events: all;
}

    .notification.success {
        background-color: #28a745;
    }

    .notification.error {
        background-color: #dc3545;
    }

    .notification.warning {
        background-color: #fcc525;
    }

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-50px);
    }
}
