/* Save Website Notification Styles */
.save-website-notification {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 320px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.notification-content {
    display: flex;
    padding: 15px;
    align-items: center;
    position: relative;
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: #4f46e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    color: white;
}

.notification-text {
    flex-grow: 1;
}

.notification-title {
    font-weight: 600;
    font-size: 16px;
    margin: 0 0 5px 0;
}

.notification-message {
    font-size: 14px;
    color: #4b5563;
    margin: 0;
}

.notification-actions {
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.notification-button {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
    text-decoration: none;
}

.notification-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.notification-button:first-child {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.notification-button.primary {
    color: #4f46e5;
}

.notification-button.secondary {
    color: #6b7280;
}

.notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #9ca3af;
    border-radius: 50%;
}

.notification-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #4b5563;
}

/* Toast notification styles */
#toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 10000;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s, fadeOut 0.3s 2.7s;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}