/* Флаш карт холих/эрэмбэлэх товчнуудын CSS - holihtovch.css */

/* Үндсэн товч группын тохиргоо */
.flashcard-button-group {
    display: flex;
    align-items: center;
    background-color: rgba(123, 133, 225, 0.1);
    border-radius: 25px;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Товчны үндсэн загвар */
.flashcard-button {
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    margin: 0 3px;
    border: none !important;
    background-color: white;
    color: #6c757d;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

/* Hover эффект */
.flashcard-button:hover {
    transform: translateY(-2px);
    background-color: #f8f9fa;
    color: #7b85e1;
    box-shadow: 0 4px 8px rgba(123, 133, 225, 0.3);
}

/* Идэвхтэй товчны загвар */
.flashcard-button.active {
    background-color: #7b85e1 !important;
    color: white !important;
    box-shadow: 0 4px 8px rgba(123, 133, 225, 0.5);
}

/* Товч дарах үеийн эффект */
.flashcard-button:active {
    transform: translateY(0px);
    box-shadow: 0 0px 2px rgba(0, 0, 0, 0.1);
}

/* Айкон тохируулга */
.flashcard-button i {
    font-size: 16px;
    transition: all 0.3s ease;
}

.flashcard-button:hover i {
    transform: scale(1.1);
}

/* Зураасны загвар */
.flashcard-divider {
    height: 24px;
    width: 1px;
    background-color: rgba(123, 133, 225, 0.3);
    margin: 0 8px;
}

/* Карт хэсгийн гарчиг */
.card-header-custom {
    background-color: transparent;
    border-bottom: none;
    padding: 10px 10px 20px 10px;
}

/* Хариуцлагатай дизайн */
@media (max-width: 576px) {
    .flashcard-button {
        width: 36px;
        height: 36px;
    }
    
    .flashcard-button i {
        font-size: 14px;
    }
    
    .flashcard-divider {
        height: 20px;
        margin: 0 5px;
    }
}