/* Toast Notification Styles */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    pointer-events: none;
}

.theme-toast {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: auto;
    min-width: 250px;
    max-width: 400px;
}

.theme-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 8px;
    filter: grayscale(0);
}

.toast-message {
    color: #1e293b;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }

    .theme-toast {
        min-width: auto;
        max-width: none;
    }
}

/* Animation for multiple toasts */
.theme-toast:not(:last-child) {
    margin-bottom: 8px;
}

/* Hover effect */
.theme-toast:hover {
    transform: translateX(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 6px 16px rgba(0, 0, 0, 0.12);
}