.answer {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.answer.incorrect {
    background-color: #e2aeb2;
    border-color: #c0747c;
}

.answer.correct {
    background-color: #46b15f;
    border-color: #1f8036;
}

#buttons {
    margin-top: 20px;
    display: none;
}

#header {
    background-color: #e9ecef;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

header {
    text-align: left;
}

#topic-exercise,
#exercise-name,
#author {
    font-size: 0.85rem;
    font-weight: lighter;
    color: #6c757d;
}

#author {
    font-size: 0.75rem;
}

.button {
    margin-top: 0.75rem;
}

.card {
    background-color: #f8f9fa;
}

.answer {
    text-align: left;
    color: #343a40;
}

#question .answer {
    margin-bottom: 5px;
}

#navigation-dots {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
    direction: ltr;
}

.navigation-dot {
    cursor: pointer;
    margin: 0 5px;
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
}

.drag-item {
    width: 100px;
    padding: 10px;
    background-color: #007bff;
    color: white;
    margin: 10px;
    cursor: pointer;
    text-align: center;
}

.drop-zone {
    width: 120px;
    height: 100px;
    border: 2px dashed #ccc;
    margin: 10px;
    text-align: center;
    padding-top: 40px;
    background-color: #f9f9f9;
}

.drag-and-drop-exercise {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.drag-items, .drop-zones {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.correct {
    border: 5px solid green;
}

.incorrect {
    border: 5px solid red;
}

@media (max-width: 768px) {
    .answer img {
        max-width: 60% !important; 
    }
}