/* Two Column Layout */
.exploded-image-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.exploded-image-column {
    flex: 1;
    min-width: 0;
}

.content-column {
    flex: 1;
    min-width: 0;
}

.exploded-image-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.exploded-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.clickable-area {
    position: absolute;
    display: flex; /* Ensures centering */
    align-items: center; /* Vertically centers the content */
    justify-content: center; /* Horizontally centers the content */
    border-radius: 50%; /* Keeps the element circular */
    cursor: pointer;
    transform: translate(-50%, -50%); /* Centers the clickable-area relative to its top/left */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    z-index: 2;
    width: 40px; /* Adjust as needed for the size of the circle */
    height: 40px; /* Match the width for a perfect circle */
    background-color: rgba(255, 0, 0, 0.7); /* Example background color */
    font-size: 20px; /* Adjust font size freely */
    color: white; /* Text color for the + sign */
    font-weight: bold; /* Makes the + sign bold */
}


.dynamic-content {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
}

.dynamic-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
    display: block;
}

.dynamic-text {
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .exploded-image-wrapper {
        flex-direction: column;
    }

    .content-column {
        margin-top: 20px;
    }
}

.dynamic-heading {
    margin: 15px 0;
    font-size: 1.5em;
    font-weight: bold;
    color: #333;
    text-align: center;
}

.hotspot-form .form-field {
    margin-bottom: 15px;
}

.hotspot-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.hotspot-form input[type="text"] {
    width: 100%;
    padding: 8px;
}

.section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-content.active {
    display: block;
}

.clickable-area.active {
    background-color: var(--wp-admin-theme-color) !important;
    border-color: var(--wp-admin-theme-color) !important;
    color: #fff !important;
}