.misas-welcome-popup, #misas-welcome-popup {}

/* overlay */
#misas-welcome-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 16px;
}

/* popup */
#misas-welcome-popup {
    background: #fff;
    border-radius: 18px;
    padding: 30px 25px 20px;
    max-width: 420px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px -10px rgba(0,0,0,0.25);
    text-align: center;
    color: #1f2d3a;
}

/* close button */
#misas-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #4a4a4a;
}

/* titles */
#misas-welcome-popup h1 {
    font-size: 32px;
    margin: 0;
    font-weight: 600;
}
#misas-welcome-popup h2 {
    font-size: 26px !important;
    margin: 8px 0 5px;
    font-weight: 700;
    color:#f26322;
}
#misas-welcome-popup p {
    font-size: 14px;
    margin:20px 0;
    color: black;
}

/* button group */
.misas-button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

/* primary button */
.misas-primary-btn {
    display: block;
    padding: 14px 18px;
    margin-bottom:5px;
    border-radius: 8px !important;
    text-decoration: none;
    font-weight: 700 !important;
    background: #f26322 !important;
    color: #fff !important;
    border: 8px;
    cursor: pointer;
    font-size: 16px !important;
    width: 100%;
}

.misas-primary-btn:hover {
    background: #fff !important;
    color: #f26322 !important;
    border: 1px solid #f26322 !important;
}

/* footnote */
.misas-footnote {
    font-size: 10px !important;
    color: #5a5a5a;
}

/* responsive */
@media (max-width: 480px) {
    #misas-welcome-popup h1 {
        font-size: 26px;
    }
    #misas-welcome-popup h2 {
        font-size: 20px;
    }
    .misas-primary-btn {
        font-size: 15px;
    }
}