﻿/* عنوان الصفحة */
.flash-title {
    text-align: center;
    font-size: 2.8rem;
    color: #7b1fa2;
    margin-bottom: 25px;
    font-weight: bold;
}

/* الحاوية الرئيسية */
.card-container {
    text-align: center;
    background-color: #fffdf0;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin: auto;
}

/* صورة البطاقة */
.flash-image {
    width: 300px;
    height: auto;
    border-radius: 16px;
    border: 4px solid #ffd54f;
    margin-bottom: 15px;
}

/* الكلمة */
.flash-word {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #f97316;
    background-color: #fff7ed;
    padding: 12px 25px;
    border-radius: 16px;
    margin: 0 auto 25px;
    width: fit-content;
}

/* مجموعة الأزرار */
.button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* الأزرار */
.flash-btn {
    padding: 12px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

    /* ألوان الأزرار */
    .flash-btn.sound {
        background-color: #3b82f6;
        color: white;
    }

        .flash-btn.sound:hover {
            background-color: #2563eb;
        }

    .flash-btn.next {
        background-color: #22c55e;
        color: white;
    }

        .flash-btn.next:hover {
            background-color: #16a34a;
        }

    .flash-btn.random {
        background-color: #f59e0b;
        color: white;
    }

        .flash-btn.random:hover {
            background-color: #d97706;
        }

/* التقدم */
.progress {
    margin-top: 25px;
    font-size: 1.2rem;
    color: #4b5563;
}

/* في حالة لا توجد بيانات */
.no-data {
    text-align: center;
    font-size: 1.4rem;
    margin-top: 30px;
    color: #e11d48;
}

.flash-btn.translate {
    background-color: #ec4899; /* وردي */
    color: white;
}

    .flash-btn.translate:hover {
        background-color: #db2777;
    }


/* الترجمة العربية */
.flash-translation {
    font-size: 2rem;
    font-weight: bold;
    color: #10b981; /* أخضر فاتح مميز */
    background-color: #ecfdf5; /* خلفية هادئة */
    padding: 10px 20px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    direction: rtl;
}
