/*----------------------------------
 FLASHCARD SIDES
----------------------------------*/
.flashcard-side {
    font-family: 'Scheherazade New', serif;
    font-size: 36px;
    color: #222;
    padding: 25px;
    border: 2px solid #ccc;
    margin: 10px auto;
    width: 80%;
    max-width: 500px;
    background: #f9f9f9;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
}

/* Arabic (front) */
#flashcard-front {
    direction: rtl;
}

/* English meaning (back) */
#flashcard-back {
    direction: ltr;
    font-size: 20px;
}

/*----------------------------------
 BUTTONS
----------------------------------*/
.flashcard-buttons {
    text-align: center;
    margin-top: 10px;
}

.flashcard-buttons button {
    margin: 5px;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
}

/*----------------------------------
 DARK MODE
----------------------------------*/
body.dark-mode {
    background-color: #111;
    color: #eee;
}

body.dark-mode .flashcard-side {
    background-color: #222;
    color: #f9f9f9;
    border-color: #888;
}
