@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Prompt:wght@400;500;600;700;800&display=swap");

body {
    background: #f3f0e7;
    color: #303030;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

section {
    background: #fff;
    padding: 2em;
    border-radius: 0.75rem;
    line-height: 1.6;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
    font-size: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
      0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

mark {
    font-size: 10px;
    background: #ffcece;
}

.th-font, .meaning {
    font-family: 'Prompt', sans-serif;
    font-weight: 500;
}

.draggable {
    cursor: move;
    display: inline-block;
    border: 1px dashed #000;
}

.droppable, .basic, .meaning, .correct-answer {
    min-height: 40px;
    max-height: 40px;
    width: 100%;
    border: 1px dashed #ccc;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-color {
    background: #fff2f2;
    border: 2px solid #000;
    min-height: 200px;
    padding: 10px;
}

.correct {
    border-color: green;
    background: #f0ffeb;
}

.incorrect {
    border-color: red;
    background: #ffecec;
}

.hidden-input {
    display: none;
}

.basic {
    background: #fff9e8;
}

.meaning {
    background: #ebf2ff;
}

.correct-answer {
    background: #f0ffeb;
}
