/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(26, 77, 71, 0.90);
    color: #04DF72;
    padding: 16px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 99999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: toastSlideDown 0.3s ease-out;
    min-width: 300px;
    backdrop-filter: blur(10px);
}

.toast-notification.hiding {
    animation: toastSlideUp 0.3s ease-out forwards;
}

@keyframes toastSlideDown {
    from {
        transform: translate(-50%, -100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

@keyframes toastSlideUp {
    from {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    to {
        transform: translate(-50%, -100%);
        opacity: 0;
    }
}

.toast-icon {
    width: 24px;
    height: 24px;
    background-color: #04DF72;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-icon svg {
    width: 16px;
    height: 16px;
    fill: #1a4d47;
}

.toast-message {
    flex: 1;
    font-size: 15px;
    font-weight: 500;
}

.toast-close {
    background: none;
    border: none;
    color: #04DF72;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}

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