.codeness-webform-container {
    max-width: 100%;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.codeness-webform-wrapper iframe {
    width: 100%;
    border: none;
    overflow: hidden;
}

/* Popup Styles */
.codeness-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: none;
    justify-content: center;
    align-items: center;
}

.codeness-popup-content {
    position: fixed;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 100000;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    display: none;
}

.codeness-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    color: #666;
    background: none;
    border: none;
    padding: 0;
}

.codeness-popup-close:hover {
    color: #000;
}

/* Positions */
.codeness-popup-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.codeness-popup-top-left {
    top: 20px;
    left: 20px;
}

.codeness-popup-top-right {
    top: 20px;
    right: 20px;
}

.codeness-popup-bottom-left {
    bottom: 20px;
    left: 20px;
}

.codeness-popup-bottom-right {
    bottom: 20px;
    right: 20px;
}
