/* public/bakutebak.css */

body {
    font-family: 'Inter', sans-serif;
}

/* Gaya untuk tombol jawaban agar transisi lebih halus */
.btn-answer {
    transition: background-color 0.2s ease-in-out, transform 0.1s ease-in-out;
}

/* Gaya dasar untuk tag kata yang dijawab di laman hasil */
.result-word-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px; /* fully rounded */
    font-size: 0.875rem; /* text-sm */
    font-weight: 600; /* font-semibold */
    margin: 0.25rem;
    color: white; /* Default text color */
}

.result-word-tag.correct {
    background-color: #10B981; /* bg-green-500 */
}

.result-word-tag.incorrect {
    background-color: #EF4444; /* bg-red-500 */
}