.qa-timer {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 1.3rem;
font-weight: 700;
color: #e03e2f; /* bright red */
background-color: #fff4f4;
border: 2px solid #e03e2f;
border-radius: 6px;
padding: 10px 20px;
display: inline-block;
user-select: none;
box-shadow: 0 2px 6px rgba(224, 62, 47, 0.3);
}

/* .qa-timer-container {
    display: flex;
    justify-content: center;
} */
.qa-countdown {
    display: flex;
    gap: 25px;
}
/* .time-segment {
    text-align: center;
} */
    
/* question section css */
.wxgiveaway-options {
    margin-top: 10px;
}
.wxgiveaway-question-title {
    text-align: center;
}
.wxgiveaway-answer-option {
    display: block;
    border: 1px solid #ccc;
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 10px;
    cursor: pointer;
    text-align: center;
}

.wxgiveaway-answer-option:hover {
    background-color: #f0f0f0;
    border-color: #888;
}

.wxgiveaway-answer-option input[type="radio"] {
    display: none;
}

.wxgiveaway-answer-option input[type="radio"]:checked + span {
    font-weight: bold;
    color: #333;
}
.wxgiveaway-free-questions {
    margin-top: 20px;
}

.wxgiveaway-question-block {
    margin-bottom: 30px;
}

.wxgiveaway-answer {
    display: block;
    padding: 12px 15px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    
}

.wxgiveaway-answer:hover {
    background-color: #f0f0f0;
}

.wxgiveaway-answer input[type="radio"] {
    display: none;
}

.wxgiveaway-answer input[type="radio"]:checked + span {
    font-weight: bold;
}

.wxgiveaway-question {
    margin-bottom: 10px;
    text-align: center;
}

.wxgiveaway-answer-option.correct {
    background-color: #d4edda; /* greenish */
    border-color: #28a745;
    color: #155724;
}

.wxgiveaway-answer-option.incorrect {
    background-color: #f8d7da; /* reddish */
    border-color: #dc3545;
    color: #721c24;
}

.wxgiveaway-answer-option.correct span {
    font-weight: bold;
    color: #155724;
}

.wxgiveaway-answer-option.incorrect span {
    font-weight: bold;
    color: #721c24;
}

input.correct {
    border: 2px solid green;
}
input.incorrect {
    border: 2px solid red;
}
.correct-answer-display {
    font-style: italic;
    color: green;
    font-size: 0.9em;
    margin-top: 4px;
  }