/**
 * Embed-specific styles for Sauna ROI Calculator
 * Provides a clean, minimal interface for iframes
 */

body.sauna-roi-embed {
    margin: 0;
    padding: 15px;
    background: transparent;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    line-height: 1.5;
    color: #333;
}

.sauna-roi-embed-container {
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
}

.sauna-roi-embed-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.sauna-roi-embed-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 24px;
}

.sauna-roi-embed-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #777;
}

.sauna-roi-embed-footer a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.sauna-roi-embed-footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for small iframes */
@media (max-width: 760px) {
    
}
@media (max-width: 480px) {
    body.sauna-roi-embed{
        padding: 0;
    }
    .sauna-roi-embed-container{
        padding: 0px;
        box-shadow: none;
        border: 1px solid #eee;
    }
    body .calculation-results{
        padding: 20px;
    }
    
    .sauna-roi-embed-header h2 {
        font-size: 20px;
        padding-top: 15px;
    }
}
