#urekakids-questions-container {
    margin-top: 8px;
    font-family: Arial, sans-serif;
}

/* Question Block */
.question-block {
    border: 1px solid #d1d1d1;
    padding: 10px;
    margin-bottom: 10px;
    background: #f3f4f6;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease;
}
.question-block:hover {
    background: #e9eff8;
}

/* Option Block */
.option-block {
    border: 1px solid #e0e0e0;
    padding: 6px;
    margin-top: 6px;
    background: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: border-color 0.3s;
}
.option-block:hover {
    border-color: #4CAF50;
}

/* Buttons */
.add-option, #add-question {
    background: #4CAF50;
    color: #fff;
    border: none;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.add-option:hover, #add-question:hover {
    background: #388E3C;
}

.remove-option, .remove-question {
    background: #ff5c5c;
    color: #fff;
    border: none;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.remove-option:hover, .remove-question:hover {
    background: #e04343;
}

/* Media Preview */
.media-preview {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    align-items: center;
    flex-wrap: wrap;
}
.media-preview img {
    max-width: 60px;
    max-height: 60px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.media-preview audio {
    max-width: 220px;
    height: 25px;
}

/* Mode Dropdown */
#urekakids_mode {
    margin-bottom: 12px;
    padding: 6px;
    border-radius: 4px;
    font-size: 14px;
    border: 1px solid #d1d1d1;
}

/* Titles and Labels */
h4 {
    font-size: 1rem;
    color: #333;
    margin: 0;
    padding-bottom: 6px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
}

/* Textarea Styling */
textarea {
    width: 100%;
    min-height: 60px;
    padding: 6px;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.3s;
}
textarea:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}

/* Full-width "Add Question" Button */
#add-question {
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    font-size: 15px;
    background: #4CAF50;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
#add-question:hover {
    background: #388E3C;
}
