/* Toast Notification Container */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Individual Toast */
.toast-notification {
    min-width: 250px;
    background: #fff;
    color: #333;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideIn 0.3s ease-out forwards;
    border-left: 5px solid #ccc;
    font-family: inherit;
    font-size: 14px;
}

/* Toast Types */
.toast-notification.success {
    border-left-color: #28a745;
}

.toast-notification.success .toast-icon {
    color: #28a745;
}

.toast-notification.error {
    border-left-color: #dc3545;
}

.toast-notification.error .toast-icon {
    color: #dc3545;
}

.toast-notification.info {
    border-left-color: #17a2b8;
}

.toast-notification.info .toast-icon {
    color: #17a2b8;
}

/* Icon & Text */
.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-close {
    cursor: pointer;
    font-size: 18px;
    color: #999;
    margin-left: 15px;
}

.toast-close:hover {
    color: #333;
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(20px);
    }
}

.toast-notification.hiding {
    animation: fadeOut 0.3s ease-in forwards;
}
