
#mask_layer_open {
    font-size: 16px;
}

.mask_layer_overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.mask_layer_modal {
    background: white;
    border-radius: 10px;
    width: 95%;
    height: 93vh;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mask_layer_iframe {
    flex: 1;
    border: none;
    width: 100%;
    height: 100%;
}

.mask_layer_buttons {
    margin-top: 10px;
}

.mask_layer_buttons button {
    padding: 10px 20px;
    font-size: 14px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.mask_layer_buttons #mask_layer_confirm {
    background: #4CAF50;
    color: white;
}

.mask_layer_buttons #mask_layer_cancel {
    background: #f44336;
    color: white;
}