#modalSection {
    display: none;

}

.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.custom-modal-content {
    position: relative;
    max-width: 90%;
    width: auto;
    background: white;
    padding: 0;
    border-radius: 12px;
    box-shadow: #646161 0 0 8px 3px !important;
}

.iframe-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.modal-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
    z-index: 10;
    background-color: white;
    border: 2px solid white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: black;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}