/* Content Updater - Normal View */
.gzseo-simple-cu {
    background-color: #F6F6F5;
    padding: 15px;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
}

.gzseo-accordion .gzseo-accordion-content {
    text-align: justify !important;
}

/* Content Updater - Accordion */
.gzseo-accordion {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ccc;
}
.gzseo-accordion-header {
    background-color: #F6F6F5;
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gzseo-accordion-content {
    display: none;
    padding: 10px;
}
.gzseo-acc-icon {
    transition: transform 0.3s;
    width: 16px;
    height: 16px;
}
.gzseo-acc-icon-rotated {
    transform: rotate(180deg);
}

/* Iframes Wrapper */
.gzseo-iframe-wrapper {
    width: 100%; /* عرض کامل */
    height: auto; /* ارتفاع داینامیک */
    position: relative; /* برای کنترل آی‌فریم */
    aspect-ratio: 16 / 9; /* نسبت تصویر استاندارد ویدیو */
    max-width: 100%; /* جلوگیری از سرریز */
}
.gzseo-iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute; /* برای پر کردن دایو والد */
    top: 0;
    left: 0;
    border-radius: 5px;
}
