/* Preview Widget Styles - Simple Text Display */
.preview-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    font-family: 'Montserrat', sans-serif;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    pointer-events: auto;
    user-select: none;
    max-width: 250px;
    line-height: 1.4;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.preview-widget:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.preview-widget::before {
    content: "Preview Mode. Designed by LX Web Design";
}

/* Responsive Design */
@media (max-width: 480px) {
    .preview-widget {
        bottom: 15px;
        right: 15px;
        font-size: 12px;
        padding: 10px 14px;
        max-width: 200px;
    }
}
