/**
 * PhoneB Image Generator Frontend Styles
 */

/* Ensure generated images display at full width */
.phoneb-generated-image {
    display: block;
    margin: 30px auto;
    max-width: 100%;
    height: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* WordPress alignment classes */
.phoneb-generated-image.aligncenter {
    margin-left: auto;
    margin-right: auto;
}

.phoneb-generated-image.alignleft {
    float: left;
    margin-right: 20px;
}

.phoneb-generated-image.alignright {
    float: right;
    margin-left: 20px;
}

/* Caption styling */
.wp-caption {
    max-width: 100% !important;
    margin: 30px auto;
}

.wp-caption img {
    max-width: 100%;
    height: auto;
}

.wp-caption-text {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 10px;
    padding: 0 10px;
}

/* PhoneB service box styling */
.phoneb-service-box {
    background-color: #f8f7ff;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    border: 2px solid #e7e5ff;
}

.phoneb-service-box h3 {
    color: #5E4CDB;
    margin-top: 0;
    margin-bottom: 20px;
}

.phoneb-service-box ul {
    list-style: none;
    padding-left: 0;
}

.phoneb-service-box ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

.phoneb-service-box ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5E4CDB;
    font-weight: bold;
}

/* CTA Button styling */
.phoneb-cta-section {
    background-color: #f8f7ff;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
}

.phoneb-cta-section h3 {
    color: #5E4CDB;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .phoneb-generated-image {
        margin: 20px auto;
    }
    
    .phoneb-service-box,
    .phoneb-cta-section {
        padding: 20px;
        margin: 20px 0;
    }
    
    .wp-caption {
        margin: 20px auto;
    }
}