/* Toast Notification Styles */
.toast-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: #10b981;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 14px;
    min-width: 300px;
    max-width: 90vw;
}

.toast-notification .toast-icon {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-notification .toast-icon i {
    font-size: 12px;
    color: white;
}

.toast-notification .toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.toast-notification .toast-close:hover {
    color: white;
}

.toast-notification.hide {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .toast-notification {
        min-width: 280px;
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .toast-notification .toast-icon {
        width: 18px;
        height: 18px;
    }
    
    .toast-notification .toast-icon i {
        font-size: 11px;
    }
}
