/* /Components/Controls/ChapterComponent.razor.rz.scp.css */
/* ChapterComponent Scoped CSS */

/* --- Chapter Container --- */
.chapter[b-rq7hd3wad1] {
    /* Main container and box styling */
    width: 100%;
    max-width: 900px;
    background: #fffefb;
    padding: 3rem 2.5rem;
    margin-bottom: 5rem;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08), inset 0 0 8px rgba(0,0,0,0.05);
    border: 1px solid #e6dfd4;
}

/* --- Chapter Title --- */
.chapter-title[b-rq7hd3wad1] {
    font-size: 0.5rem;
    text-align: end;
}

/* --- Page Container --- */
.page[b-rq7hd3wad1] {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed #d8cdbb;
}

/* --- Page Title --- */
.page-title[b-rq7hd3wad1] {
    font-size: 0.5rem;
    text-align: end;
}

/* --- Page / Sentence Container (Updated for better layout) --- */
.flex-page[b-rq7hd3wad1] {
    display: flex;
    flex-direction: column;
    align-items: stretch; /* Sentences fill the width */
    gap: 1.5rem;
    padding: 0 4%; /* Adjusted default padding */
    box-sizing: border-box;
}

    /* Ensure sentences within the flex-page fill the container and use gap for spacing */
    .flex-page .sentence[b-rq7hd3wad1] {
        width: 100%;
        margin-bottom: 0;
    }

/* --- Responsive Styles for Chapter Content --- */

@media (max-width: 1250px) {
    .flex-page[b-rq7hd3wad1] {
        padding: 0 2rem;
    }
}



@media (max-width: 900px) {
    .chapter[b-rq7hd3wad1] {
        padding: 2rem;
    }
    .flex-page[b-rq7hd3wad1] {
        padding: 0rem;
    }
    .chapter-title[b-rq7hd3wad1] {
        font-size: 1.8rem;
    }

    .page-title[b-rq7hd3wad1] {
        font-size: 1.4rem;
    }
}
/* /Components/Controls/ChooseMemoriseGameModeComponent.razor.rz.scp.css */
/* === Modal Base === */
.modal[b-ael8d7b4zk] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 999;
    animation: fadeIn-b-ael8d7b4zk 0.4s ease-in-out;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; /* vertical center */
    justify-content: center; /* horizontal center */
}



    .modal.active[b-ael8d7b4zk] {
        display: flex;
    }

/* === Modal Box === */
.modal-content[b-ael8d7b4zk] {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 30px rgba(0,0,0,0.6);
    max-width: 420px;
    width: 90%;
    animation: popIn-b-ael8d7b4zk 0.4s ease-out;
    margin: auto;
}

    .modal-content h2[b-ael8d7b4zk] {
        font-size: 2rem;
        color: #ff00c3;
        margin-bottom: 0.5rem;
    }

    .modal-content p[b-ael8d7b4zk] {
        color: #ddd;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

/* === Mode Buttons === */
.mode-list[b-ael8d7b4zk] {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.mode-btn[b-ael8d7b4zk] {
    background: linear-gradient(135deg, #8a00ff, #ff00c3);
    border: none;
    border-radius: 12px;
    padding: 0.9rem;
    font-size: 1.1rem;
    color: white;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(255,0,195,0.4);
}

    .mode-btn:hover[b-ael8d7b4zk] {
        transform: translateY(-2px);
        box-shadow: 0 0 18px rgba(255,0,195,0.6);
    }

    .mode-btn i[b-ael8d7b4zk] {
        margin-right: 8px;
    }

/* === Close Button === */
.close-modal[b-ael8d7b4zk] {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 0.7rem 1.4rem;
    font-size: 1rem;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

    .close-modal:hover[b-ael8d7b4zk] {
        background: rgba(255,255,255,0.2);
    }

/* === Animations === */
@keyframes fadeIn-b-ael8d7b4zk {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes popIn-b-ael8d7b4zk {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* === Responsive === */
@media (max-width: 600px) {
    .modal-content[b-ael8d7b4zk] {
        padding: 1.5rem;
    }

    .mode-btn[b-ael8d7b4zk] {
        font-size: 1rem;
    }
}
/* /Components/Controls/FooterComponent.razor.rz.scp.css */

header[b-qvfcwjrxtu], footer[b-qvfcwjrxtu] {
    background-color: rgba(22, 43, 111, 1); /* rgba(R, G, B, A) */
}
footer[b-qvfcwjrxtu] {
    position: fixed;
    bottom: 0;
    width: 100%;
}
footer[b-qvfcwjrxtu] {
    color: #fff;
    text-align: center;
    padding: 20px;
    z-index: 5;
}

footer p[b-qvfcwjrxtu] {
    margin: 0;
}


.small-footer[b-qvfcwjrxtu] {
    font-size: 0.8em; /* Adjust the value as needed */
    padding: 0px;
}
/* /Components/Controls/GoBackNavBarComponent.razor.rz.scp.css */
/* === Header / Navbar === */
header.navbar[b-5gts7igilx] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 10;
}

.btn-exit.logo[b-5gts7igilx] {
    width: 3rem;
    transition: transform 0.2s ease-in-out;
}

    .btn-exit.logo:hover[b-5gts7igilx] {
        transform: scale(1.1);
    }
/* /Components/Controls/GrammarLessonComponent.razor.rz.scp.css */
/* === trainings === */
.answer-box[b-j744c4x1w5] {
    width: 100%;
    min-height: 100px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 1rem;
    padding: 0.8rem;
    resize: vertical;
    outline: none;
    transition: 0.2s ease-in-out;
}

.answer-box:focus[b-j744c4x1w5] {
    background: rgba(255,255,255,0.1);
    border-color: #00bcd4;
}

/* === Modal Backdrop === */
.modal-backdrop[b-j744c4x1w5] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 90;
}

/* === Modal Container === */
.explanation-modal[b-j744c4x1w5] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    color: #fff;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
    text-align: center;
    /* ✨ important part */
    animation: fadeInOpacity-b-j744c4x1w5 0.6s ease-out;
    animation-fill-mode: both; /* keep final state */
    z-index: 100;
}

@keyframes fadeInOpacity-b-j744c4x1w5 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* === Title === */
.explanation-modal h2[b-j744c4x1w5] {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 0.5rem;
}

/* === Image === */
.explanation-image[b-j744c4x1w5] {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.15);
}

/* === Text === */
.explanation-text[b-j744c4x1w5] {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.explanation-text-block[b-j744c4x1w5] {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
}


/* === Buttons === */
.modal-buttons[b-j744c4x1w5] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.audio-btn[b-j744c4x1w5], .next-btn[b-j744c4x1w5] {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.audio-btn[b-j744c4x1w5] {
    background: #00bcd4;
    color: #fff;
}

    .audio-btn:hover[b-j744c4x1w5] {
        background: #0097a7;
    }

.next-btn[b-j744c4x1w5] {
    background: #c40094;
    color: #fff;
}

    .next-btn:hover[b-j744c4x1w5] {
        background: #950170;
        transform: translateY(-2px);
    }

/* === Responsive === */
@media (max-width: 500px) {
    .explanation-modal[b-j744c4x1w5] {
        padding: 1.5rem;
    }

        .explanation-modal h2[b-j744c4x1w5] {
            font-size: 1.7rem;
        }

    .modal-buttons[b-j744c4x1w5] {
        flex-direction: column;
    }
}

/* reuse button styles from before */

/* Right answer: */
.correct-modal[b-j744c4x1w5] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 2rem 3rem;
    text-align: center;
    color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    animation: fadeInOpacity-b-j744c4x1w5 0.3s ease-out;
    z-index: 200;
}

.checkmark[b-j744c4x1w5] {
    font-size: 4rem;
    color: #00ffcc;
    margin-bottom: 0.5rem;
    animation: fadeInOpacity-b-j744c4x1w5 0.3s ease-out;
}

.correct-text[b-j744c4x1w5] {
    font-size: 1.6rem;
    color: #00ffcc;
    font-weight: bold;
}
/* /Components/Controls/LessonSelectComponent.razor.rz.scp.css */
/* Container for cards */
.container[b-ganx2kbk9u] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1rem;
    justify-items: center; /* <- centers single card */
}


/* Each card */
.card[b-ganx2kbk9u] {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    text-decoration: none;
    color: #222;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    max-width: 380px; /* prevents stretching on single item */
    width: 100%;
}

    .card:hover[b-ganx2kbk9u] {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    }

/* Image */
.card-image img[b-ganx2kbk9u] {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Title overlay */
.card-title[b-ganx2kbk9u] {
    padding: 1rem;
    text-align: center;
    background: #2e3a59;
}

.card-title h1[b-ganx2kbk9u] {
    margin: 0;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Unclickable cards */
.unclickable[b-ganx2kbk9u] {
    pointer-events: none;
    cursor: default;
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-title h1[b-ganx2kbk9u] {
        font-size: 1.1rem;
    }
}

@media (max-width: 460px) {
    .card-title h1[b-ganx2kbk9u] {
        font-size: 1rem;
    }
}
@media (max-width: 284px) {
    .card[b-ganx2kbk9u] {
        max-width: none; 
        width: 80%;
    }
    .container[b-ganx2kbk9u] {
        padding:0px;
    }
}

/* /Components/Controls/LoadingComponent.razor.rz.scp.css */
.loading[b-ej0kcn1em6] {
    left: 50%;
    top: 50%;
    position: absolute;
    height: 10%;
    transform: translate(-50%, -50%);
}
/* /Components/Controls/ModalComponent.razor.rz.scp.css */
.modal-overlay[b-a1o77d4cx9] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal[b-a1o77d4cx9] {
    background: #fff;
    border-radius: 10px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    animation: fadeIn-b-a1o77d4cx9 0.25s ease;
}

.modal-header[b-a1o77d4cx9],
.modal-footer[b-a1o77d4cx9] {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-body[b-a1o77d4cx9] {
    padding: 0rem 1.5rem 1rem 1rem;
}

.modal-title[b-a1o77d4cx9] {
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-close[b-a1o77d4cx9] {
    border: none;
    background: transparent;
    font-size: 1.2rem;
    cursor: pointer;
}

.modal-btn[b-a1o77d4cx9] {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
}

    .modal-btn.cancel[b-a1o77d4cx9] {
        background: #e5e7eb;
    }

    .modal-btn.confirm[b-a1o77d4cx9] {
        background: #2563eb;
        color: #fff;
    }

.hidden[b-a1o77d4cx9] {
    display: none;
}

@keyframes fadeIn-b-a1o77d4cx9 {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-link[b-a1o77d4cx9] {
    color: #2563eb;
    text-decoration: underline;
    cursor: pointer;
}

    .modal-link:hover[b-a1o77d4cx9] {
        text-decoration: none;
    }
/* /Components/Controls/ResultScreenComponent.razor.rz.scp.css */
#confetti-canvas[b-tkov6jq97b] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}


.ending-screen[b-tkov6jq97b] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(135deg, #4b0082, #000);
    color: #fff;
    align-items: center;
    justify-items: center;
    text-align: center;
    padding: 2rem;
}

/* Left column */
.summary-section[b-tkov6jq97b] {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 350px;
}

.progress-box[b-tkov6jq97b], .reviewed-box[b-tkov6jq97b] {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-align: left;
}

    .progress-box h3[b-tkov6jq97b], .reviewed-box h3[b-tkov6jq97b] {
        color: #fff;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .progress-box p[b-tkov6jq97b] {
        margin: 0.3rem 0;
        font-size: 1.1rem;
    }

    .progress-box span[b-tkov6jq97b] {
        float: right;
        font-weight: bold;
        color: #ffd700;
    }

.word-card[b-tkov6jq97b] {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .word-card .emoji[b-tkov6jq97b] {
        font-size: 2rem;
    }

.word-info .arabic[b-tkov6jq97b] {
    font-size: 1.5rem;
    font-weight: bold;
}

.word-info .english[b-tkov6jq97b] {
    font-size: 1rem;
    opacity: 0.8;
}

/* Center column */
.result-section[b-tkov6jq97b] {
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

    .result-section h2[b-tkov6jq97b] {
        color: #ff00c3;
        font-size: 2rem;
    }

.stars[b-tkov6jq97b] {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.star[b-tkov6jq97b] {
    width: 60px;
    height: 60px;
    background: gray;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    position: relative;
    overflow: hidden;
}

.star-fill[b-tkov6jq97b] {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: gold;
}

.score[b-tkov6jq97b] {
    font-size: 3rem;
    font-weight: bold;
    margin-top: 10px;
}

.start-btn[b-tkov6jq97b] {
    margin-top: 20px;
    background: #c40094;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

    .start-btn:hover[b-tkov6jq97b] {
        background: #950170;
    }

/* Right column */
.leaderboard-section[b-tkov6jq97b] {
    width: 100%;
    max-width: 350px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

    .leaderboard-section h3[b-tkov6jq97b] {
        margin-bottom: 1rem;
        color: #fff;
    }

.leader-row[b-tkov6jq97b] {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    font-size: 1.1rem;
}

    .leader-row:first-child[b-tkov6jq97b] {
        font-weight: bold;
        color: #ffd700;
    }

@media (max-width: 1000px) {
    .ending-screen[b-tkov6jq97b] {
        grid-template-columns: 1fr;
        gap: 1rem;
        height: auto;
        padding: 1rem;
    }
}
/* /Components/Controls/SentenceComponent.razor.rz.scp.css */
/* SentenceComponent Scoped CSS */

/* --- Sentence Box (main container) --- */
.sentence[b-cbtinlg93l] {
    position: relative;
    /* Card/Book aesthetic */
    border: 1px solid #e0d4c4;
    border-radius: 10px;
    background: #fffdf8;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem; /* Note: This should be set to 0 if used inside the flex-page with gap */
    /* RTL/Text display */
    direction: rtl;
    text-align: right;
    cursor: pointer;
    /* Transition for hover effect */
    transition: transform .15s ease-in-out, box-shadow .15s ease-in-out;
    overflow: visible;
}

    .sentence:hover[b-cbtinlg93l] {
        transform: scale(1.02);
        box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    }

    /* Style for when the sentence is used as a title (e.g., Book Title, Chapter Title) */
    .sentence.title[b-cbtinlg93l] {
        border: none;
        background: transparent;
        font-weight: 700;
        font-size: 2rem; /* The actual size is set by the FontSize parameter in the component */
        text-align: center;
    }

/* --- Clickable Words Layer (Overlay) --- */
.word-layer[b-cbtinlg93l] {
    /* Position exactly over the base line if a base line exists */
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /* Flex layout for words */
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    /* Important: allows clicks to pass through unless targeting a word */
    pointer-events: none;
    z-index: 2;
}

.words-inline[b-cbtinlg93l] {
    display: flex;
    align-items: center;
    gap: .35rem;
    /* Allows clicking on the words inside this container */
    pointer-events: auto;
}

/* --- Word Element (Clickable) --- */
.word[b-cbtinlg93l] {
    display: inline-flex;
    vertical-align: middle;
    padding: 0 0.3rem;
    border-radius: 4px;
    white-space: nowrap;
    align-items: center;
    justify-content: center;
}

    .word.hover:hover[b-cbtinlg93l] {
        background: #fbf7ef;
        box-shadow: inset 0 0 6px rgba(0,0,0,0.06);
        transform: scale(1.05);
    }

    /* SVG sizing within the word element */
    .word svg[b-cbtinlg93l] {
        display: inline-block;
        width: auto;
        height: 1em; /* Scales based on the parent font size (or component parameter) */
        vertical-align: middle;
    }

/* --- Translation Area --- */
.sentence-translation[b-cbtinlg93l] {
    margin-top: .6rem;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    text-align: right;
    direction: initial;
}

/* --- Responsive Styles --- */
@media (max-width: 900px) {
    .sentence[b-cbtinlg93l] {
        padding: .8rem 1rem;
    }

    /* Adjust SVG size for smaller screens */
    .word svg[b-cbtinlg93l], svg[b-cbtinlg93l] {
        max-height: 6vh;
    }

    
}
@media (max-width: 900px) {
    .words-inline[b-cbtinlg93l] {
        display: block;
    }
}
/* /Components/Controls/ShowMistakeComponent.razor.rz.scp.css */
/* result */

.checkanswer-modal[b-uweb8lhhzg] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    color: #fff;
    text-align: center;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
    animation: fadeInOpacity 0.3s ease-out;
    z-index: 120;
}

    .checkanswer-modal h2[b-uweb8lhhzg] {
        font-size: 2rem;
        color: #ffd700;
        margin-bottom: 1rem;
    }

.checkanswer-content[b-uweb8lhhzg] {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-align: left;
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.user-answer[b-uweb8lhhzg] {
    color: #ffb6c1;
    margin-bottom: 1rem;
}

.correct-answer[b-uweb8lhhzg] {
    color: #00ffcc;
    margin-bottom: 1rem;
}

.answer-explanation[b-uweb8lhhzg] {
    background: rgba(255,255,255,0.05);
    border-left: 4px solid #ffd700;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
}

.modal-buttons[b-uweb8lhhzg] {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

@media (max-width: 500px) {
    .modal-buttons[b-uweb8lhhzg] {
        flex-direction: column;
    }
}

.next-btn[b-uweb8lhhzg] {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.next-btn[b-uweb8lhhzg] {
    background: #c40094;
    color: #fff;
}

    .next-btn:hover[b-uweb8lhhzg] {
        background: #950170;
        transform: translateY(-2px);
    }
/* /Components/Controls/SliderComponent.razor.rz.scp.css */
main[b-cs4hhojmwp] {
    display: block;
}
/* img slider */
.slider[b-cs4hhojmwp] {
    width: 1286px; /*font-size-adjust this for slider and picture size*/
    overflow: hidden;
    position: relative;
    margin: auto;
}

.slide[b-cs4hhojmwp] {
    display: none;
    width: 100%;
}

    .slide img[b-cs4hhojmwp] {
        width: 100%;
        height: auto;
    }

.active[b-cs4hhojmwp] {
    display: block;
}

/* Add animation */
.fade[b-cs4hhojmwp] {
    animation-name: fade-b-cs4hhojmwp;
    animation-duration: 1.5s;
}

@keyframes fade-b-cs4hhojmwp {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

.image-overlay[b-cs4hhojmwp] {
    position: relative;
    overflow: hidden;
}

    .image-overlay img[b-cs4hhojmwp] {
        transition: transform 0.5s ease-out;
    }

    .image-overlay:hover img[b-cs4hhojmwp] {
        transform: scale(1.05); /* Adjust the scale factor as per your preference */
    }
/* Text on images */
.image-overlay[b-cs4hhojmwp] {
    position: relative;
    display: inline-block;
    width: 100%
}

.overlay-text[b-cs4hhojmwp] {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the alpha value for transparency */
    padding: 5px 10px;
    border-radius: 5px;
}

/* Button for img slider (there is no button)*/
/*resize image*/
@media (max-width: 1190px) {
    .slider[b-cs4hhojmwp] {
        width: 100%;
    }
}

@media (max-width: 600) {
    .FirstImage[b-cs4hhojmwp] {
        content: url(Muslim-girl-school-upcale-smaller-For600px.png);
    }
}


/*    slider  */
.center[b-cs4hhojmwp] {
    width: fit-content;
    margin: auto;
}

.flex-center[b-cs4hhojmwp] {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.flex-colm[b-cs4hhojmwp] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* /Components/Controls/VocabSettingsComponent.razor.rz.scp.css */
/* === Content Holder === */
#contentholder[b-klantbq9hk] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* === Popup Info === */
.popup-info[b-klantbq9hk] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    width: 90%;
    max-width: 600px;
    color: #fff;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
    animation: fadeIn-b-klantbq9hk 0.6s ease-out;
}

    .popup-info.show[b-klantbq9hk] {
        opacity: 1;
    }

    .popup-info h2[b-klantbq9hk] {
        font-size: 2.5rem;
        color: #ff00c3;
        margin-bottom: 1rem;
    }

/* === Info Container === */
.info-container[b-klantbq9hk] {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    overflow-y: auto;
    max-height: 60vh;
}

/* === Each Row === */
.info-row-settings[b-klantbq9hk] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.3rem 1rem;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0.8rem 0;
}

    .info-row-settings:last-child[b-klantbq9hk] {
        border-bottom: none;
    }

/* Arabic / English Text */
.info.arabic[b-klantbq9hk] {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: right;
    direction: rtl;
    color: #ffd500;
}

.info.english[b-klantbq9hk] {
    font-size: 1.2rem;
    text-align: left;
    color: #fff;
}

/* Checkbox Labels */
.info-row-settings label[b-klantbq9hk] {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.95rem;
}

.info-row-settings input[type="checkbox"][b-klantbq9hk] {
    accent-color: #ff00c3;
    transform: scale(1.2);
    cursor: pointer;
}

/* === Buttons === */
.button[b-klantbq9hk] {
    margin-top: 1.5rem;
    text-align: center;
}

.start-btn[b-klantbq9hk] {
    display: inline-block;
    background: #c40094;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    transition: all 0.2s ease-in-out;
}

    .start-btn:hover[b-klantbq9hk] {
        background: #950170;
        transform: translateY(-2px);
    }

/* === Animations === */
@keyframes fadeIn-b-klantbq9hk {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* === Responsive === */
@media (max-width: 700px) {
    .popup-info[b-klantbq9hk] {
        padding: 1rem;
        width: 95%;
    }

        .popup-info h2[b-klantbq9hk] {
            font-size: 2rem;
        }

    .info.arabic[b-klantbq9hk] {
        font-size: 1.3rem;
    }
}

@media (max-width: 400px) {
    .popup-info[b-klantbq9hk] {
        padding: 0.8rem;
    }
}

@media (max-width: 370px) {
    .popup-info[b-klantbq9hk] {
        padding: 0.5rem;
    }
}
/* /Components/Controls/WordComponent.razor.rz.scp.css */
.modal-overlay[b-7m6xfriep1] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn-b-7m6xfriep1 0.25s ease-in-out;
}

.modal-box[b-7m6xfriep1] {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.modal-img[b-7m6xfriep1] {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.close-btn[b-7m6xfriep1] {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2rem;
    color: #444;
    background: none;
    border: none;
    cursor: pointer;
}

.open-btn[b-7m6xfriep1] {
    background: #2563eb;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

@keyframes fadeIn-b-7m6xfriep1 {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-at4z5xuiny] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-at4z5xuiny] {
    flex: 1;
}

.sidebar[b-at4z5xuiny] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-at4z5xuiny] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-at4z5xuiny]  a, .top-row[b-at4z5xuiny]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-at4z5xuiny]  a:hover, .top-row[b-at4z5xuiny]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-at4z5xuiny]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-at4z5xuiny] {
        justify-content: space-between;
    }

    .top-row[b-at4z5xuiny]  a, .top-row[b-at4z5xuiny]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-at4z5xuiny] {
        flex-direction: row;
    }

    .sidebar[b-at4z5xuiny] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-at4z5xuiny] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-at4z5xuiny]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-at4z5xuiny], article[b-at4z5xuiny] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-at4z5xuiny] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-at4z5xuiny] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */


*[b-b306hhrkpm] {
    box-sizing: border-box;
}

body[b-b306hhrkpm] {
    margin: 0;
    padding: 0;
}
 /*   nav and footer  */
header[b-b306hhrkpm], footer[b-b306hhrkpm] {
    background-color: rgba(22, 43, 111, 1); /* rgba(R, G, B, A) */
}

header[b-b306hhrkpm] {
    height: 100px;
}


.account-btn[b-b306hhrkpm] {
    position: relative;
    margin-right: 20px;
}
@media (max-width: 910px) {
    .account-btn[b-b306hhrkpm] {
        margin-right: 0px;
    }
    .margin-top-s[b-b306hhrkpm] {
        margin-top:20px;
    }
}
.logo[b-b306hhrkpm] {
    width: 100px;
    margin-left: 20px; 
}

nav[b-b306hhrkpm] {
    height: 100px;
}

    nav ul[b-b306hhrkpm] {
        float: right;
        margin: 0 !important;
        height: 100%;
        list-style-type: none;
        justify-content: space-between;
        overflow: hidden;
        width: 100%;
    }

nav ul li[b-b306hhrkpm]{
    margin: 0;
    width: min-content;
    display: flex;
}

nav ul li a span[b-b306hhrkpm]{
    display: inline-block;
    line-height: 80px;
    margin: 0 5px;
    list-style: none;
    color: white;
}

.link[b-b306hhrkpm] {
    color: white;
    font-size: 18px;
    padding: 7px 13px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none !important;
    margin: auto;
    width: max-content;
}
.non-btn[b-b306hhrkpm] {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
}
span.active[b-b306hhrkpm], .nav:hover[b-b306hhrkpm] {
    background: #1b9bff;
    transition: .5s;
}

section[b-b306hhrkpm] {
    padding: 20px 0;
}

section h2[b-b306hhrkpm] {
    color: #333;
}

section p[b-b306hhrkpm] {
    color: #666;
}


.checkbtn[b-b306hhrkpm] {
    font-size: 30px;
    color: white;
    float: right;
    line-height: 100px;
    margin-right: 40px;
    cursor: pointer;
    display: none;
}

#check[b-b306hhrkpm] {
    display: none;
}

@media (max-width: 910px) {
.checkbtn[b-b306hhrkpm] {
    display: block;
}

ul[b-b306hhrkpm] {
    position: fixed;
    height: 100vh;
    background: #2c3e50;
    top: 80px;
    text-align: center;
    transition: all .5s;
    width: 0;
    overflow: hidden;
    padding: 0;
    z-index: 10;
}

nav[b-b306hhrkpm] {
    width: 100%;
    display:block !important;
}
    nav ul[b-b306hhrkpm] {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        top: 100px;
        left: -100%;
    }
nav ul li[b-b306hhrkpm] {
    display: block;
}

nav ul li a[b-b306hhrkpm] {
    font-size: 20px;
    margin: 50px 0;
}
nav ul li form[b-b306hhrkpm] {
    flex-direction:column;
}

a:hover[b-b306hhrkpm], a.active[b-b306hhrkpm] {
    background: none;
}


#check:checked ~ ul[b-b306hhrkpm] {
    left: 0 !important;
    z-index: 10;
}
.flex-align[b-b306hhrkpm] {
    display:block !important;
}
}
/*        end         */

/*    general setting     */
.pos-absolute[b-b306hhrkpm] {
    position: absolute;
}
.pos-fixed[b-b306hhrkpm] {
    position: fixed;
}
.pos-relative[b-b306hhrkpm] {
    position: relative;
}
.justify-center[b-b306hhrkpm] {
    justify-content:center;
}
.flex[b-b306hhrkpm] {
    display: flex;
}
.flex-align[b-b306hhrkpm] {
    display: flex;
    align-items: center;
}
.height-min[b-b306hhrkpm] {
    height: min-content;
}


.account-menu[b-b306hhrkpm] {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    display: block;
    pointer-events: auto;
}

.navbar[b-b306hhrkpm], .flex[b-b306hhrkpm], li[b-b306hhrkpm] {
    overflow: visible !important;
    pointer-events: auto !important;
}

.account-menu .menu-item[b-b306hhrkpm] {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.account-menu button[b-b306hhrkpm] {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 10px 15px;
    font-size: 14px;
    cursor: pointer;
}

    .account-menu button:hover[b-b306hhrkpm] {
        background: #f5f5f5;
    }
/* /Components/Pages/Contact.razor.rz.scp.css */
.padding_layout_1[b-g55ygszlcq] {
    padding-top: 90px;
    padding-bottom: 90px;
}

.section[b-g55ygszlcq] {
    float: left;
    width: 100%;
}

.everything[b-g55ygszlcq] {
    margin: 0;
    padding: 0;
    outline: none !important;
    box-sizing: border-box;
}

input.field_custom[b-g55ygszlcq] {
    border: solid #e1e1e1 1px;
    width: 100%;
    background: #f8f8f8;
    min-height: 50px;
    padding: 5px 20px;
    line-height: normal;
    border-radius: 0px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #737373;
}

.separateh2[b-g55ygszlcq] {
    text-align: center;
    position: relative;
    font-size: 35px;
    color: #333;
    line-height: 36px;
    font-weight: 800;
    position: relative;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-top: 1.5em;
}

.main_heading h2 span[b-g55ygszlcq]::after {
    content: "";
    display: block;
    width: 90px;
    height: 7px;
    background: rgba(22, 43, 111, 1);
    position: relative;
    right: 0;
    bottom: 0;
    margin: 10px auto 20px;
}

textarea.field_custom[b-g55ygszlcq] {
    border: solid #e1e1e1 1px;
    width: 100%;
    background: #f8f8f8;
    min-height: 150px;
    padding: 15px 20px;
    line-height: normal;
    border-radius: 0px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #737373;
}

.btn.main_bt[type="submit"][b-g55ygszlcq] {
    background: rgba(22, 43, 111, 1);
    padding: 0;
    color: #fff;
    font-weight: 700;
    padding: 12px 25px 10px;
    border-radius: 50px;
    width: 170px;
    height: 50px;
    text-transform: none;
    letter-spacing: 1px;
    margin-top: 30px;
}

.btn:not(:disabled):not(.disabled)[b-g55ygszlcq] {
    cursor: pointer;
}

.full[b-g55ygszlcq] {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
}

@media (min-width: 767px) {
    .col-xl-2[b-g55ygszlcq] {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
    .info[b-g55ygszlcq] {
        width: 50%;
    }
}

.form_section[b-g55ygszlcq] {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-around;
}

#fields[b-g55ygszlcq] {
    display: flex;
}



#rows[b-g55ygszlcq] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#form[b-g55ygszlcq] {
    width: 50%;
}

/**== Form ==**/

input.field_custom[b-g55ygszlcq] {
    border: solid #e1e1e1 1px;
    width: 100%;
    background: #f8f8f8;
    min-height: 50px;
    padding: 5px 20px;
    line-height: normal;
    border-radius: 0px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #737373;
}

textarea.field_custom[b-g55ygszlcq] {
    border: solid #e1e1e1 1px;
    width: 100%;
    background: #f8f8f8;
    min-height: 150px;
    padding: 15px 20px;
    line-height: normal;
    border-radius: 0px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #737373;
}

.field[b-g55ygszlcq] {
    padding: 0 5px;
}

.btn.main_bt[type="submit"][b-g55ygszlcq] {
    background: rgba(22, 43, 111, 1);
    padding: 0;
    color: #fff;
    font-weight: 700;
    padding: 12px 25px 10px;
    border-radius: 50px;
    width: 170px;
    height: 50px;
    text-transform: none;
    letter-spacing: 1px;
    margin-top: 30px;
}

.center[b-g55ygszlcq] {
    display: flex;
    justify-content: center;
}












.btn.main_bt[type="submit"][b-g55ygszlcq] {
    background: linear-gradient(to right, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
    padding: 12px 25px;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    width: 170px;
    height: 50px;
    text-transform: none;
    letter-spacing: 1px;
    margin-top: 30px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn.main_bt[type="submit"]:hover[b-g55ygszlcq] {
    background: linear-gradient(to right, #7db9e8 0%, #207cca 50%, #2989d8 51%, #1e5799 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.form_section[b-g55ygszlcq] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#rows[b-g55ygszlcq] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

#form[b-g55ygszlcq] {
    width: 100%;
    max-width: 800px;
}

.center[b-g55ygszlcq] {
    display: flex;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .info[b-g55ygszlcq] {
        width: 100%;
    }

    .btn.main_bt[type="submit"][b-g55ygszlcq] {
        width: 100%;
    }
}

/*    text command books      */
/* /Components/Pages/Grammar.razor.rz.scp.css */
/* === Global Reset === */
*[b-mjhjxqp7ne] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.body[b-mjhjxqp7ne] {
    background: linear-gradient(135deg, #4b0082, #000);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    transition: 0.3s ease-in-out;
}


/* === Content holder === */
#contentholder[b-mjhjxqp7ne] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    min-height: 100vh;
}

/* === Grammar Lesson Popup === */
.popup-info[b-mjhjxqp7ne] {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 18px;
    padding: 2.5rem 2rem;
    text-align: left;
    width: 90%;
    max-width: 700px;
    color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    animation: fadeIn-b-mjhjxqp7ne 0.6s ease-out;
}

    .popup-info h2[b-mjhjxqp7ne] {
        font-size: 2.2rem;
        color: #ffd700;
        border-bottom: 2px solid rgba(255,255,255,0.2);
        padding-bottom: 0.5rem;
        margin-bottom: 1rem;
    }

.info-container[b-mjhjxqp7ne] {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.1rem;
    overflow-y: auto;
    max-height: 45vh;
}

.example-block[b-mjhjxqp7ne] {
    background: rgba(255,255,255,0.08);
    border-left: 4px solid #ffd700;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.2rem;
    margin-top: 1rem;
}

    .example-block .arabic[b-mjhjxqp7ne] {
        display: block;
        font-size: 1.5rem;
        color: #00ffcc;
        margin-bottom: 0.5rem;
    }

/* === Buttons === */
.button[b-mjhjxqp7ne] {
    margin-top: 1.5rem;
    text-align: center;
}

.start-btn[b-mjhjxqp7ne] {
    background: #c40094;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    margin: 0 8px;
    transition: all 0.2s ease-in-out;
}

    .start-btn:hover[b-mjhjxqp7ne] {
        background: #950170;
        transform: translateY(-2px);
    }

/* === Animation === */
@keyframes fadeIn-b-mjhjxqp7ne {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* === Responsive === */
@media (max-width: 700px) {
    .popup-info[b-mjhjxqp7ne] {
        padding: 1.5rem;
        width: 95%;
    }

        .popup-info h2[b-mjhjxqp7ne] {
            font-size: 2rem;
        }

    .btn-exit.logo[b-mjhjxqp7ne], header.navbar[b-mjhjxqp7ne] {
        display: none;
    }
}

@media (max-width: 400px) {
    .example-block .arabic[b-mjhjxqp7ne] {
        font-size: 1.2rem;
    }
}
/* /Components/Pages/Lessons.razor.rz.scp.css */
main[b-lv2iifqgux] {
    font-family: 'Segoe UI', sans-serif;
    background: #f3f4f6;
    color: #222;
    padding: 2rem;
}

.grid-container[b-lv2iifqgux] {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 45px;
}

.textdescription[b-lv2iifqgux] {
    text-align: center;
}

/* Each section (Grammar / Vocabulary) */
.grid-item[b-lv2iifqgux] {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    width: 100%;
    max-width: 420px;
    flex: 1 1 340px;
    overflow: hidden;
    transition: transform 0.25s ease;
}

/* Fixed title */
.boxfortext[b-lv2iifqgux] {
    background: #2e3a59;
    padding: 1rem 1.2rem;
    flex-shrink: 0;
}

/* Scrollable button list */
.grid-item .button-list[b-lv2iifqgux] {
    flex-grow: 1;
    max-height: 420px; /* adjust as needed */
    scrollbar-width: thin;
}

    /* optional – style scrollbar */
    .grid-item .button-list[b-lv2iifqgux]::-webkit-scrollbar {
        width: 6px;
    }

    .grid-item .button-list[b-lv2iifqgux]::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.2);
        border-radius: 4px;
    }


    .grid-item:hover[b-lv2iifqgux] {
        transform: translateY(-3px);
    }

.boxfortext[b-lv2iifqgux] {
    background: #2e3a59;
    padding: 1rem 1.2rem;
}

.textdescription[b-lv2iifqgux] {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.links[b-lv2iifqgux], .btn1[b-lv2iifqgux], .btn2[b-lv2iifqgux] {
    display: block;
    width: 100%;
    padding: 0.9rem 1rem;
    border: none;
    cursor: pointer;
    font-family: 'Rubik', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    transition: all 0.2s ease-in-out;
}

/* Alternating rows for contrast */
.btn1[b-lv2iifqgux] {
    background: #f9fafb;
    color: #222;
}

.btn2[b-lv2iifqgux] {
    background: #ffffff;
    color: #222;
}

    /* Hover */
    .btn1:hover[b-lv2iifqgux], .btn2:hover[b-lv2iifqgux] {
        background: #e5e7eb;
        transform: scale(1.02);
    }

/* Lesson Title */
h3[b-lv2iifqgux] {
    margin: 0;
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
}

/* Image Section */
.pictureExample[b-lv2iifqgux] {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .pictureExample img[b-lv2iifqgux] {
        width: 100%;
        max-width: 480px;
        border-radius: 10px;
        box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    }

/* Responsive */
@media (max-width: 1024px) {
    .grid-container[b-lv2iifqgux] {
        flex-direction: column;
        align-items: center;
    }

    .grid-item[b-lv2iifqgux] {
        max-width: 95%;
    }

    .pictureExample[b-lv2iifqgux] {
        display: none;
    }
}
.grid-item[b-lv2iifqgux] {
    max-height: 500px;
    overflow-y: auto;
}

.links[b-lv2iifqgux], .btn1[b-lv2iifqgux], .btn2[b-lv2iifqgux] {
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
}

@media (max-width: 600px) {
    main[b-lv2iifqgux] {
        padding: 1rem;
    }

    .textdescription[b-lv2iifqgux] {
        font-size: 1.2rem;
    }

    .btn1[b-lv2iifqgux], .btn2[b-lv2iifqgux] {
        font-size: 1rem;
    }
}
/* /Components/Pages/QuizEnviroment.razor.rz.scp.css */

*[b-vy6xlj40rg] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


.body.active[b-vy6xlj40rg] {
    filter: blur(10px);
}


#contentholder[b-vy6xlj40rg] {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#container[b-vy6xlj40rg] {
    background: rgba(9,0,29,0);
    display: none;
    width: 100%;
    height: 100vh;
    z-index: 2;
    position: fixed;
    transition: opacity 1s ease-in;
}

    #container.active[b-vy6xlj40rg] {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(9,0,29,1);
    }


/* Introductionmenu */
.popup-info[b-vy6xlj40rg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 500px;
    background: #fff;
    border-radius: 6px;
    padding: 10px 2px;
    opacity: 0.01; /* Initially slightly transparent (optional) */
    transition: opacity 0.5s ease-in; /* Transition for fade-in */
    max-height: 95%;
}

    .popup-info.show[b-vy6xlj40rg] {
        opacity: 1; /* Visible with opacity 1 */
    }

    .popup-info .no-display[b-vy6xlj40rg] {
        display: none;
        opacity: 0;
    }

    .popup-info h2[b-vy6xlj40rg] {
        font-size: 50px;
        color: #c40094;
    }

    .popup-info .info[b-vy6xlj40rg] {
        display: block;
        font-size: 1.2rem;
        color: #333;
        font-weight: 500;
        margin: 3px 0px 0px 5px;
    }









/*          new          */



.options-panel[b-vy6xlj40rg] {
    margin-top: 1rem;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 1rem;
    text-align: left;
    animation: fadeIn-b-vy6xlj40rg 0.3s ease-in;
}



/* === Global Reset === */
*[b-vy6xlj40rg] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.body[b-vy6xlj40rg] {
    background: linear-gradient(135deg, #4b0082, #000);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
    transition: 0.3s ease-in-out;
}


/* === Content holder === */
#contentholder[b-vy6xlj40rg] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    min-height: 100vh;
}

/* === Intro Popup === */
.popup-info[b-vy6xlj40rg] {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    width: 90%;
    max-width: 600px;
    color: #fff;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
    animation: fadeIn-b-vy6xlj40rg 0.6s ease-out;
}

    .popup-info h2[b-vy6xlj40rg] {
        font-size: 2.5rem;
        color: #ff00c3;
        margin-bottom: 1rem;
    }

.info-container[b-vy6xlj40rg] {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 1rem;
    margin-top: 1rem;
    overflow-y: auto;
    max-height: 60vh;
}

.info-row[b-vy6xlj40rg] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .info-row:last-child[b-vy6xlj40rg] {
        border-bottom: none;
    }
    /* Optional dimmed style for avoided words */
    .info-row.avoided[b-vy6xlj40rg] {
        opacity: 0.4;
        filter: grayscale(100%);
    }

.info[b-vy6xlj40rg] {
    font-size: 1.1rem;
}

.arabic[b-vy6xlj40rg] {
    font-size: 1.5rem;
    font-weight: bold;
}

.progress-bar-container[b-vy6xlj40rg] {
    flex: 3;
    background: #ddd;
    border-radius: 8px;
    height: 18px;
    overflow: hidden;
    margin-left: 10px;
    max-width: 70%;
}

.progress-bar[b-vy6xlj40rg] {
    height: 100%;
    background: linear-gradient(90deg, #ffd700, #ff00c3);
    transition: width 0.3s ease-in-out;
}

/* Settings */



/* Arabic and English words */
.info.arabic[b-vy6xlj40rg] {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: right;
    direction: rtl;
    color: #ffd500;
}

.info.english[b-vy6xlj40rg] {
    font-size: 1.2rem;
    color: #fff;
    text-align: left;
}






/* Progress width levels */
.progress-0[b-vy6xlj40rg] {
    width: 0%;
}

.progress-1[b-vy6xlj40rg] {
    width: 11%;
}

.progress-2[b-vy6xlj40rg] {
    width: 22%;
}

.progress-3[b-vy6xlj40rg] {
    width: 33%;
}

.progress-4[b-vy6xlj40rg] {
    width: 44%;
}

.progress-5[b-vy6xlj40rg] {
    width: 55%;
}

.progress-6[b-vy6xlj40rg] {
    width: 66%;
}

.progress-7[b-vy6xlj40rg] {
    width: 77%;
}

.progress-8[b-vy6xlj40rg] {
    width: 88%;
}

.progress-9[b-vy6xlj40rg] {
    width: 100%;
}

/* Buttons */
.button[b-vy6xlj40rg] {
    margin-top: 1.5rem;
    text-align: center;
}

.start-btn[b-vy6xlj40rg] {
    display: inline-block;
    background: #c40094;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    margin: 4px 8px;
    transition: all 0.2s ease-in-out;
}

    .start-btn:hover[b-vy6xlj40rg] {
        background: #950170;
        transform: translateY(-2px);
    }

/* Animations */
@keyframes fadeIn-b-vy6xlj40rg {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 700px) {
    .popup-info[b-vy6xlj40rg] {
        padding: 1rem;
        width: 95%;
    }

        .popup-info h2[b-vy6xlj40rg] {
            font-size: 2rem;
        }

    .arabic[b-vy6xlj40rg] {
        font-size: 1.3rem;
    }

    .btn-exit.logo[b-vy6xlj40rg] {
        display: none;
    }

    header.navbar[b-vy6xlj40rg] {
        display: none;
    }
}

@media (max-width: 400px) {
    .progress-bar-container[b-vy6xlj40rg] {
        max-width: 60%;
    }
}

@media (max-width: 370px) {
    .progress-bar-container[b-vy6xlj40rg] {
        max-width: 50%;
    }
}
/* /Components/Pages/Readings.razor.rz.scp.css */
/*       pages and text      */
.book-container[b-tjgncsgo87] {
    padding: 1.5rem;
    background: #fafafa;
    min-height: 100vh;
    font-family: sans-serif;
}

/* Book Title */
.book-title[b-tjgncsgo87] {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}


/* General book view styles */
.title[b-tjgncsgo87] {
    font-size: 1rem;
    text-align: end;
}

.book-container[b-tjgncsgo87] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
    background: #fdfaf6;
    color: #2b2b2b;
    min-height: 100vh;
    font-family: 'Georgia','Times New Roman',serif;
    background-image: radial-gradient(#f3efe9 1px, transparent 1px);
    background-size: 25px 25px;
    box-sizing: border-box;
}

/* Book title block */
.book-title[b-tjgncsgo87] {
    width: 100%;
    max-width: 900px;
    text-align: center;
    margin-bottom: 4rem;
    border-bottom: 3px double #c2b280;
    padding-bottom: 1rem;
}

    .book-title .sentence[b-tjgncsgo87] {
        font-size: 3rem; /* Overridden in SentenceComponent by the FontSize parameter */
        font-weight: 700;
        color: #3b2f2f;
        letter-spacing: 1px;
    }

/* small utilities */
.empty-message[b-tjgncsgo87] {
    text-align: center;
    color: #8b7e6f;
    font-style: italic;
}

/* Responsive for book-level elements */
@media (max-width: 900px) {
    .book-title .sentence[b-tjgncsgo87] {
        font-size: 2.2rem;
    }
}
/* /Components/Pages/Supportme.razor.rz.scp.css */
.field[b-xfdplxno33] {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: center;
}
.secondfield[b-xfdplxno33] {
    height: fit-content;
}

.btn1[b-xfdplxno33], .btn2[b-xfdplxno33] {
    width: 100%;
    height: fit-content;
}

.links[b-xfdplxno33] {
    text-align: center;
    text-decoration: none;
    font-family: 'Rubik', Arial, sans-serif;
    font-weight: 700;
    font-size: larger;
    color: black;
    border-width: 2px;
    border-style: outset;
}

.btn1[b-xfdplxno33] {
    background-color: rgba(114, 180, 253, 1);
}

.btn2[b-xfdplxno33] {
    background-color: oldlace;
}

.box .btn1:hover[b-xfdplxno33],
.box .btn2:hover[b-xfdplxno33] {
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
}

.box[b-xfdplxno33] {
    width: fit-content;
    background-color: rgba(242, 242, 242, 1);
    margin: 5px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.padding_layout_1[b-xfdplxno33] {
    padding-top: 90px;
    padding-bottom: 90px;
}

.section[b-xfdplxno33] {
    float: left;
    width: 100%;
}

.everything[b-xfdplxno33] {
    margin: 0;
    padding: 0;
    outline: none !important;
    box-sizing: border-box;
}

input.field_custom[b-xfdplxno33], textarea.field_custom[b-xfdplxno33] {
    border: solid #e1e1e1 1px;
    width: 100%;
    background: #f8f8f8;
    border-radius: 0px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #737373;
}

input.field_custom[b-xfdplxno33] {
    min-height: 50px;
    padding: 5px 20px;
    line-height: normal;
}

textarea.field_custom[b-xfdplxno33] {
    min-height: 150px;
    padding: 15px 20px;
    line-height: normal;
}

.separateh2[b-xfdplxno33] {
    text-align: center;
    font-size: 35px;
    color: #333;
    line-height: 36px;
    font-weight: 800;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0;
}

.main_heading h2 span[b-xfdplxno33]::after {
    content: "";
    display: block;
    width: 90px;
    height: 7px;
    background: rgba(22, 43, 111, 1);
    position: relative;
    right: 0;
    bottom: 0;
    margin: 10px auto 20px;
}

.btn.main_bt[type="submit"][b-xfdplxno33] {
    background: linear-gradient(to right, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
    padding: 12px 25px;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    width: 170px;
    height: 50px;
    text-transform: none;
    letter-spacing: 1px;
    margin-top: 30px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

    .btn.main_bt[type="submit"]:hover[b-xfdplxno33] {
        background: linear-gradient(to right, #7db9e8 0%, #207cca 50%, #2989d8 51%, #1e5799 100%);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

.btn:not(:disabled):not(.disabled)[b-xfdplxno33] {
    cursor: pointer;
}

.full[b-xfdplxno33] {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
}

@media (min-width: 767px) {
    .col-xl-2[b-xfdplxno33] {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
}

.form_section[b-xfdplxno33] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#rows[b-xfdplxno33] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

#form[b-xfdplxno33] {
    width: 100%;
    max-width: 800px;
}

.center[b-xfdplxno33] {
    display: flex;
    justify-content: center;
}

#thanks[b-xfdplxno33] {
    margin-left: auto;
    margin-right: auto;
}
/* /Components/Pages/VocabWallet.razor.rz.scp.css */
.vocab-container[b-hrc4ffnc9w] {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Segoe UI', sans-serif;
    color: #222;
}

.header[b-hrc4ffnc9w] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.subtitle[b-hrc4ffnc9w] {
    color: #666;
    font-size: 0.9rem;
}

button[b-hrc4ffnc9w] {
    background: #0078d4;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
}

    button:hover[b-hrc4ffnc9w] {
        background: #005fa3;
    }

.sidebar[b-hrc4ffnc9w] {
    margin-bottom: 2rem;
}

.stats[b-hrc4ffnc9w] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.stat[b-hrc4ffnc9w] {
    background: #f3f4f6;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    flex: 1;
    min-width: 100px;
    text-align: center;
}

    .stat span[b-hrc4ffnc9w] {
        display: block;
        font-size: 0.8rem;
        color: #555;
    }

    .stat strong[b-hrc4ffnc9w] {
        font-size: 1.2rem;
    }

.search[b-hrc4ffnc9w] {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.cards[b-hrc4ffnc9w] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.card[b-hrc4ffnc9w] {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.word[b-hrc4ffnc9w] {
    margin-bottom: 1rem;
}

.arabic[b-hrc4ffnc9w] {
    font-size: 1.5rem;
    font-weight: bold;
    direction: rtl;
}

.english[b-hrc4ffnc9w] {
    color: #555;
    font-size: 0.9rem;
}

.progress-bar[b-hrc4ffnc9w] {
    height: 6px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress[b-hrc4ffnc9w] {
    height: 100%;
    background: linear-gradient(to right, #34d399, #0ea5e9);
}

.controls[b-hrc4ffnc9w] {
    display: flex;
    justify-content: space-between;
}

    .controls button[b-hrc4ffnc9w] {
        flex: 1;
        margin: 0 0.25rem;
        background: #f3f4f6;
        color: #222;
    }

        .controls button.delete[b-hrc4ffnc9w] {
            background: #fee2e2;
            color: #b91c1c;
        }

footer[b-hrc4ffnc9w] {
    text-align: center;
    margin-top: 2rem;
    color: #777;
    font-size: 0.9rem;
}

.no-vocab[b-hrc4ffnc9w] {
    text-align: center;
    padding: 2rem;
    color: #555;
    font-size: 1.1rem;
    background: #f9fafb;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 1rem;
}
