/* MAIN QUIZ CONTAINER */
.omq-box {
    background: #d60000;        /* OTT red */
    padding: 20px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* QUESTION */
.omq-question {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* OPTIONS WRAPPER */
.omq-options {
    margin-bottom: 20px;
}

/* OPTION BUTTONS */
.omq-options button {
    width: 100%;
    padding: 14px;
    margin: 10px 0;
    background: #ffffff;
    color: #d60000;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.25s ease;
}

/* HOVER (before selection) */
.omq-options button:hover {
    background: #ffeaea;
}

/* AFTER SELECTION, DISABLE ALL BUTTONS */
.omq-disabled {
    pointer-events: none;
    opacity: 0.75;
}

/* CORRECT ANSWER – GREEN */
.omq-correct {
    background: #28a745 !important;   /* Green */
    color: #ffffff !important;
    border: none !important;
}

/* WRONG ANSWER – RED */
.omq-wrong {
    background: #ff0000 !important;   /* Red */
    color: #ffffff !important;
    border: none !important;
}

/* NAVIGATION BUTTONS (Next / Back / Restart) */
.omq-nav-btn,
#omq-step-container button.omq-nav-btn {
    background: #ffffff;
    color: #d60000;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: 0.25s ease;
}

/* Hover for nav buttons */
.omq-nav-btn:hover,
#omq-step-container button.omq-nav-btn:hover {
    background: #ffeaea;
}

/* RESPONSIVE */
@media (max-width: 480px) {
    .omq-box {
        padding: 15px;
    }

    .omq-question {
        font-size: 18px;
    }

    .omq-options button {
        padding: 12px;
        font-size: 15px;
    }

    .omq-nav-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}
