/* Toast Notification Styles */
#toast-notification-container {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    pointer-events: none;
}

.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4caf50;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    min-width: 200px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
    pointer-events: none;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.toast-notification__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
}

.toast-notification__message {
    flex: 1;
    line-height: 1.4;
}

.toast-notification__close {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    font-size: 14px;
    line-height: 1;
}

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

/* Error variant */
.toast-notification.error {
    background: #f44336;
}

/* Warning variant */
.toast-notification.warning {
    background: #ff9800;
}

/* Info variant */
.toast-notification.info {
    background: #2196f3;
}

/* Responsive */
@media (max-width: 767px) {
    .toast-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        min-width: auto;
        transform: translateY(-100%);
    }
    
    .toast-notification.show {
        transform: translateY(0);
    }
}

