/**
 * WL Widget Protect - Frontend Styles
 */

/* 
 * This file can be used for any frontend-specific styling
 * related to widget protection. Currently, the plugin works
 * by hiding widgets entirely, so no specific frontend styles
 * are needed, but this file is included for future enhancements.
 */

/* Example: Style for protected widget placeholders (if implemented) */
.wl-widget-protect-placeholder {
    display: none;
    padding: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-align: center;
    color: #666;
    font-style: italic;
}

.wl-widget-protect-placeholder.show {
    display: block;
}

/* Example: Style for login prompt in protected widgets (if implemented) */
.wl-widget-protect-login-prompt {
    padding: 10px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 3px;
    color: #856404;
    font-size: 14px;
}

.wl-widget-protect-login-prompt a {
    color: #856404;
    text-decoration: underline;
}

.wl-widget-protect-login-prompt a:hover {
    color: #533f03;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wl-widget-protect-placeholder,
    .wl-widget-protect-login-prompt {
        padding: 8px;
        font-size: 13px;
    }
}
