/* Frontend Styles for HTML Specials Display */

.html-specials-content {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

/* Ensure imported HTML content is responsive */
.html-specials-content img {
    max-width: 100%;
    height: auto;
}

.html-specials-content table {
    width: 100%;
    overflow-x: auto;
    display: block;
}

/* Message for when no content is available */
.hsi-no-content {
    padding: 30px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    margin: 40px auto;
    max-width: 600px;
}

.hsi-no-content p {
    margin: 0;
    font-size: 16px;
    color: #6c757d;
}

.hsi-no-content a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 600;
}

.hsi-no-content a:hover {
    text-decoration: underline;
}

/* Ensure the imported content plays well with WordPress themes */
.html-specials-content > body {
    margin: 0;
    padding: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .html-specials-content {
        padding: 10px 0;
    }
    
    .html-specials-content * {
        max-width: 100% !important;
    }
}
