/**
 * WordExercises Plugin Styles
 * Using brand colors: #020031, #f9a826, #F9F6FE, #FFFFFF
 */

.wordexercises-container {
    background-color: #F9F6FE;
    border: 1px solid #020031;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    font-family: inherit;
}

.wordexercises-title {
    color: #020031;
    font-size: 1.4em;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f9a826;
}

.wordexercises-question {
    font-weight: 600;
    margin-bottom: 20px;
    color: #020031;
}

.wordexercises-options {
    margin-bottom: 20px;
}

.wordexercises-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #FFFFFF;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.wordexercises-option:hover {
    background-color: #F9F6FE;
    border-color: #f9a826;
}

.wordexercises-option.selected {
    background-color: #f9a826;
    color: #FFFFFF;
    border-color: #020031;
}

.wordexercises-option input {
    margin-right: 10px;
}

.wordexercises-gap-text {
    line-height: 2;
    margin-bottom: 20px;
}

.wordexercises-gap {
    border: none;
    border-bottom: 2px solid #f9a826;
    background-color: #FFFFFF;
    padding: 4px 8px;
    min-width: 100px;
    margin: 0 5px;
    color: #020031;
}

.wordexercises-gap:focus {
    outline: none;
    border-bottom-color: #020031;
    background-color: #F9F6FE;
}

.wordexercises-gap.correct {
    background-color: rgba(249, 168, 38, 0.2);
    border-bottom-color: #f9a826;
}

.wordexercises-gap.incorrect {
    background-color: rgba(2, 0, 49, 0.1);
    border-bottom-color: #020031;
}

.wordexercises-button {
    background-color: #f9a826;
    color: #FFFFFF;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.wordexercises-button:hover {
    background-color: #020031;
}

.wordexercises-feedback {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.wordexercises-feedback.correct {
    background-color: rgba(249, 168, 38, 0.2);
    color: #020031;
    border: 1px solid #f9a826;
}

.wordexercises-feedback.incorrect {
    background-color: rgba(2, 0, 49, 0.1);
    color: #020031;
    border: 1px solid #020031;
}