.flp-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000;
    padding: 10px;
    box-sizing: border-box;
}

.flp-content {
    position: relative;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    max-width: 100%;
    max-height: 100%;
    width: auto;   /* allow CSS to override inline width */
    height: auto;  /* allow CSS to override inline height */
    box-sizing: border-box;
}

.flp-overlay-text {
    /*background: rgba(0,0,0,0.4);*/
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 2.2rem;
    line-height: 30px;
    margin-top: 10%;
}

/* Close button */
.flp-close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

.large-flp{
    font-size: 2rem;
    font-weight: bolder;
}

/* Mobile & tablet responsive adjustments */
/*@media (max-width: 1024px) {
    .flp-content {
        width: 90% !important;
        height: auto !important;
        padding: 10px;
    }

    .flp-overlay-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .flp-content {
        width: 95% !important;
        height: auto !important;
        padding: 8px;
    }

    .flp-overlay-text {
        font-size: 12px;
    }

    .flp-close {
        font-size: 20px;
    }
}
*/

.flp-button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #ff6600;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
}

.flp-button:hover {
    background-color: #e65c00;
}
