#mmcquiz-app {
    background: #fff;
    color: #222;
    font-family: 'Poppins', sans-serif;
    max-width: 600px;
    margin: 30px auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    border-radius: 16px;
    overflow: hidden;
}

#mmcquiz-app h1,
#mmcquiz-app h2,
#mmcquiz-app h3 {
    font-family: 'Poppins', sans-serif;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    word-break: break-word;
}

.mmcquiz-app h1 { font-size:30px !important; color:white !important;} /*V*/

.mmcquiz-content ul {
    list-style: none;
    padding: 0;
    margin: 1em 0;
}
.mmcquiz-content ul li {
    padding: 0.3em 0;
}

.mmcquiz-options {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    gap: 0.8em;
    justify-content: center;
    margin: 1.5em 0;
    scrollbar-width: thin;
    scrollbar-color: #ff6210 #eee;
    padding-bottom: 8px;
}
.mmcquiz-options::-webkit-scrollbar {
    height: 6px;
    background: #eee;
}
.mmcquiz-options::-webkit-scrollbar-thumb {
    background: #ff6210;
    border-radius: 8px;
}


.mmcquiz-opt {
    flex: 0 0 120px;
    min-width: 100px;
    padding: 1em 0.5em;
    border: 1px solid #ff6210;
    border-radius: 8px;
    font-size: 1em;
    background: #fff;
    cursor: pointer;
    text-align: center;
    outline: none;
    transition: box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(255,98,16,0.07);
    white-space: normal;
    word-break: break-word;
}
.mmcquiz-opt:active,
.mmcquiz-opt:focus {
    background: #ffe6d6;
    border-color: #f2630e;
}
/* Added later */
.mmcquiz-opt.selected {
    background: #ffe6d6;
    box-shadow: 0 2px 12px rgba(255,98,16,0.13);
}
/* Done later */
.mmcquiz-progress {
    height: 8px;
    width: 100%;
    background: #eee;
    border-radius: 6px;
    overflow: hidden;
    margin: 2em 0 0.5em 0;
}
.mmcquiz-progress > div {
    background: #ff6210;
    height: 100%;
    transition: width 0.4s;
}

#mmcquiz-app .mmcquiz-content {
    font-family: 'Poppins', sans-serif;
    padding: 1em 2em;
}

#mmcquiz-app input[type="email"],
#mmcquiz-app input[type="text"] {
    width: 100%;
    padding: 0.7em;
    margin: 0.5em 0;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

#mmcquiz-app button {
    background: #ff6210;
    color: #fff;
    padding: 0.6em 2em;
    font-size: 1.1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 0.3em 0.15em;
    transition: background 0.2s;
}
#mmcquiz-app button:active,
#mmcquiz-app button:focus {
    background: #fa5d00;
}


.mmcquiz-content h2 { font-size:22px !important;} /*V*/

@media (max-width: 700px) {
    #mmcquiz-app {
        max-width: 99vw;
        margin: 10px;
        border-radius: 7vw;
        font-size: 0.96em;
    }
    #mmcquiz-app .mmcquiz-content {
        padding: 1em 4vw;
        font-size: 1em;
    }
    .mmcquiz-options {
        gap: 0.4em;
        padding-bottom: 12px;
    }
    .mmcquiz-opt {
        flex: 0 0 88vw;
        min-width: 64vw;
        font-size: 0.98em;
        padding: 1.2em 0.5em;
    }
    .mmcquiz-progress {
        height: 6px;
        margin-top: 1.5em;
        margin-bottom: 0.5em;
    }
    h1 {
        font-size: 1.6em !important;
    }
    h2 {
        font-size: 1.12em !important;
    }
}

/*Test */
.mmcquiz-options {
    display: flex;
    flex-direction: column;
    gap: 0.3em;
    width: 100%;
}

.mmcquiz-radio-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 8px;
    /* Ensures label doesn't overflow horizontally */
    overflow-x: auto;
    white-space: normal;
}

.mmcquiz-radio-wrap label {
    width: 100%;
    font-size: 1em;
    color: #222;
    cursor: pointer;
    word-break: break-word;
}

.mmcquiz-radio-wrap input[type="radio"] {
    accent-color: #ff6210;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .mmcquiz-content {
        padding: 1em 0.5em !important;
    }
    .mmcquiz-radio-wrap label {
        font-size: 1em;
    }
}
