/* Validation styles */
.mb-4.correct-answer {
    background-color: #d4edda !important;
    border-color: #c3e6cb !important;
}

.mb-4.incorrect-answer {
    background-color: #f8d7da !important;
    border-color: #f5c6cb !important;
}

/* Star rating styles */
.star-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.star {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.star.selected,
.star:hover {
    color: #ffc107;
}

/* B-Verb and Do-Verb Quiz styles */
.scrambled-word {
    cursor: grab;
    user-select: none;
}

.scrambled-word.selected {
    border: 2px solid #007bff;
    background-color: #e7f3ff;
}

.scrambled-word.dragging {
    opacity: 0.25;
}

.ghost-dragging {
    opacity: 0.9;
    z-index: 9999;
}
