.mr-match-question-block {
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    color: #000;
    text-align: center; /* Center everything in the block */
}
.mr-match-question-block h3 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #000;
    font-size: 1.3em; /* Reduced from 1.8em */
}

/* Hide default radio */
.mr-match-choices input[type="radio"] {
    display: none;
}

/* Container for options */
.mr-match-choices {
    display: flex;
    gap: 20px;
    justify-content: center; /* Center the buttons */
    flex-wrap: wrap;
}

/* Oval Labels */
.mr-match-choices label {
    display: inline-block;
    padding: 12px 30px; /* Reduced from 20px 45px */
    border: 3px solid #333; 
    border-radius: 60px;
    cursor: pointer;
    font-weight: bold;
    color: #000;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 100px; /* Reduced from 150px */
    font-size: 1.1em; /* Reduced from 1.5em */
}

/* Hover state */
.mr-match-choices label:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

/* Selected state */
.mr-match-choices input[type="radio"]:checked + span {
    background: #333;
    color: #fff;
}

/* Since I used labels with nested inputs in the view, I need to adjust the selector or the HTML */
.mr-match-choices label {
    position: relative;
    user-select: none;
}

.mr-match-choices label.selected {
    background: #333;
    color: #fff;
    animation: pulse 0.3s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.mr-match-input-fill {
    width: 100%;
    padding: 12px;
    border: 2px solid #333;
    border-radius: 8px;
    font-size: 1.1em;
}

.mr-match-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 4px;
    font-weight: bold;
}

.mr-match-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mr-match-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.mr-match-login-required {
    text-align: center;
    padding: 60px;
    background: #f9f9f9;
    border: 2px dashed #ccc;
    color: #000;
}
