/* ==========================================================
   الباحث في الحديث - e-quran.com V15
   ========================================================== */

:root {
    --hadith-surface: var(--eq-theme-surface, #ffffff);
    --hadith-surface-soft: var(--eq-theme-bg, #f6f9f5);
    --hadith-text: var(--color-font-2, #25352f);
    --hadith-muted: var(--color-font-3, #687970);
    --hadith-primary: var(--color-font-7, #2f6e39);
    --hadith-primary-dark: #24582d;
    --hadith-border: rgba(54, 91, 66, 0.14);
    --hadith-shadow: 0 14px 42px rgba(31, 67, 42, 0.08);
    --hadith-success: #287a46;
    --hadith-warning: #9a6b1b;
    --hadith-error: #a53b3b;
}

.hadith-page {
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
    padding: 26px 0 42px;
    color: var(--hadith-text);
}

/* ==========================================================
   عناصر مساعدة
   ========================================================== */

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* ==========================================================
   Hero
   ========================================================== */

.hadith-hero {
    position: relative;
    overflow: hidden;
    padding: 34px 24px 28px;
    text-align: center;
    background:
        radial-gradient(circle at 15% 20%, rgba(47, 110, 57, 0.08) 0 2px, transparent 3px),
        radial-gradient(circle at 85% 75%, rgba(47, 110, 57, 0.06) 0 2px, transparent 3px),
        var(--hadith-surface);
    background-size: 34px 34px, 42px 42px, auto;
    border: 1px solid var(--hadith-border);
    border-radius: 22px;
    box-shadow: var(--hadith-shadow);
}

.hadith-hero::before,
.hadith-hero::after {
    position: absolute;
    width: 170px;
    height: 170px;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(47, 110, 57, 0.09);
    border-radius: 50%;
}

.hadith-hero::before {
    top: -95px;
    right: -55px;
}

.hadith-hero::after {
    bottom: -105px;
    left: -45px;
}

.hadith-hero__ornament {
    display: grid;
    width: 46px;
    height: 46px;
    margin: 0 auto 10px;
    place-items: center;
    color: var(--hadith-primary);
    font-size: 30px;
    line-height: 1;
    border: 1px solid rgba(47, 110, 57, 0.18);
    border-radius: 50%;
    background: rgba(47, 110, 57, 0.05);
}

.hadith-hero__eyebrow {
    margin: 0 0 4px;
    color: var(--hadith-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
}

.hadith-hero h1 {
    margin: 0;
    color: var(--hadith-text);
    font-family: var(--font3, "Amiri", "Traditional Arabic", serif);
    font-size: clamp(32px, 5vw, 46px);
    font-weight: 700;
    line-height: 1.45;
}

.hadith-hero__description {
    width: min(760px, 100%);
    margin: 10px auto 0;
    color: var(--hadith-muted);
    font-size: 15px;
    line-height: 2;
}

/* ==========================================================
   صندوق البحث
   ========================================================== */

.hadith-search-panel {
    margin-top: 18px;
    padding: 22px;
    background: var(--hadith-surface);
    border: 1px solid var(--hadith-border);
    border-radius: 18px;
    box-shadow: 0 8px 26px rgba(31, 67, 42, 0.05);
}

.hadith-search-label {
    display: block;
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 700;
}

.hadith-provider-picker {
    margin: 0 0 14px;
    padding: 0;
    border: 0;
}

.hadith-provider-picker legend {
    margin-bottom: 8px;
    color: var(--hadith-muted);
    font-size: 12px;
    font-weight: 700;
}

.hadith-provider-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.hadith-provider-option {
    position: relative;
    cursor: pointer;
}

.hadith-provider-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.hadith-provider-option > span {
    display: flex;
    min-height: 58px;
    flex-direction: column;
    justify-content: center;
    padding: 9px 12px;
    background: var(--hadith-surface-soft);
    border: 1px solid var(--hadith-border);
    border-radius: 11px;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.hadith-provider-option strong {
    color: var(--hadith-text);
    font-size: 13px;
}

.hadith-provider-option small {
    margin-top: 2px;
    color: var(--hadith-muted);
    font-size: 10px;
    line-height: 1.55;
}

.hadith-provider-option input:checked + span {
    background: rgba(47, 110, 57, .07);
    border-color: rgba(47, 110, 57, .42);
    box-shadow: inset 0 0 0 1px rgba(47, 110, 57, .08);
}

.hadith-provider-option input:checked + span strong {
    color: var(--hadith-primary);
}

.hadith-provider-option input:focus-visible + span {
    outline: 3px solid rgba(47, 110, 57, .14);
    outline-offset: 2px;
}

.hadith-search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: var(--hadith-surface-soft);
    border: 1px solid rgba(54, 91, 66, 0.18);
    border-radius: 15px;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.hadith-search-box:focus-within {
    background: var(--hadith-surface);
    border-color: var(--hadith-primary);
    box-shadow: 0 0 0 4px rgba(47, 110, 57, 0.09);
}

.hadith-search-box input {
    flex: 1;
    min-width: 0;
    min-height: 50px;
    padding: 0 14px;
    color: var(--hadith-text);
    background: transparent;
    font-family: inherit;
    font-size: 17px;
    border: 0;
    outline: 0;
}

.hadith-search-box input::placeholder {
    color: var(--hadith-muted);
    opacity: .78;
}

.hadith-search-box button {
    min-width: 82px;
    height: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 12px;
    color: var(--hadith-primary);
    background: var(--hadith-surface);
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    border: 1px solid rgba(47, 110, 57, .20);
    border-radius: 9px;
    box-shadow: 0 2px 7px rgba(31, 67, 42, .045);
    cursor: pointer;
    transition: transform .18s ease, color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.hadith-search-box button:hover {
    color: #fff;
    background: var(--hadith-primary);
    border-color: var(--hadith-primary);
    box-shadow: 0 6px 14px rgba(31, 94, 47, .16);
}

.hadith-search-box button:active {
    transform: translateY(1px);
}

.hadith-search-box button:disabled {
    cursor: wait;
    opacity: .62;
}

.hadith-search-button__icon {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    fill: currentColor;
}

.hadith-search-options {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 14px;
    margin-top: 13px;
}

.hadith-search-options label {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--hadith-muted);
    font-size: 13px;
}

.hadith-search-options select {
    min-height: 38px;
    padding: 0 12px;
    color: var(--hadith-text);
    background: var(--hadith-surface-soft);
    font-family: inherit;
    border: 1px solid var(--hadith-border);
    border-radius: 9px;
}

.hadith-secondary-button {
    min-height: 38px;
    padding: 0 14px;
    color: var(--hadith-muted);
    background: transparent;
    font-family: inherit;
    border: 1px solid var(--hadith-border);
    border-radius: 9px;
    cursor: pointer;
}

.hadith-search-help {
    margin: 10px 0 0;
    color: var(--hadith-muted);
    font-size: 12px;
    line-height: 1.7;
}

.hadith-quick-search {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin-top: 17px;
    padding-top: 15px;
    border-top: 1px solid var(--hadith-border);
}

.hadith-quick-search > span {
    color: var(--hadith-muted);
    font-size: 12px;
}

.hadith-quick-search button {
    padding: 7px 11px;
    color: var(--hadith-primary);
    background: rgba(47, 110, 57, 0.055);
    font-family: inherit;
    font-size: 12px;
    border: 1px solid rgba(47, 110, 57, 0.12);
    border-radius: 999px;
    cursor: pointer;
}

.hadith-quick-search button:hover {
    background: rgba(47, 110, 57, 0.10);
}

/* ==========================================================
   حالة المصادر
   ========================================================== */

.hadith-source-status {
    margin-top: 14px;
    padding: 14px 16px;
    background: var(--hadith-surface);
    border: 1px solid var(--hadith-border);
    border-radius: 14px;
}

.hadith-source-status__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 11px;
    font-size: 13px;
}

.hadith-source-status__header span {
    color: var(--hadith-muted);
}

.hadith-source-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hadith-source-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    color: var(--hadith-muted);
    background: var(--hadith-surface-soft);
    font-size: 12px;
    border: 1px solid var(--hadith-border);
    border-radius: 999px;
}

.hadith-source-pill i {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    background: #a2ada6;
    border-radius: 50%;
}

.hadith-source-pill[data-state="loading"] i {
    background: var(--hadith-warning);
    box-shadow: 0 0 0 4px rgba(154, 107, 27, .11);
}

.hadith-source-pill[data-state="success"] i {
    background: var(--hadith-success);
    box-shadow: 0 0 0 4px rgba(40, 122, 70, .11);
}

.hadith-source-pill[data-state="error"] i {
    background: var(--hadith-error);
}

/* ==========================================================
   Notice + loading
   ========================================================== */

.hadith-notice {
    margin-top: 14px;
    padding: 12px 15px;
    color: var(--hadith-text);
    background: rgba(47, 110, 57, 0.055);
    font-size: 13px;
    line-height: 1.8;
    border: 1px solid rgba(47, 110, 57, .12);
    border-radius: 12px;
}

.hadith-notice[data-type="warning"] {
    background: rgba(154, 107, 27, .07);
    border-color: rgba(154, 107, 27, .18);
}

.hadith-notice[data-type="error"] {
    background: rgba(165, 59, 59, .06);
    border-color: rgba(165, 59, 59, .16);
}

.hadith-loading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 14px;
    padding: 18px;
    background: var(--hadith-surface);
    border: 1px solid var(--hadith-border);
    border-radius: 14px;
}

.hadith-loading[hidden] {
    display: none;
}

.hadith-loading__spinner {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border: 3px solid rgba(47, 110, 57, .12);
    border-top-color: var(--hadith-primary);
    border-radius: 50%;
    animation: hadith-spin .75s linear infinite;
}

.hadith-loading strong {
    display: block;
    margin-bottom: 2px;
}

.hadith-loading p {
    margin: 0;
    color: var(--hadith-muted);
    font-size: 12px;
}

@keyframes hadith-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================
   النتائج
   ========================================================== */

.hadith-results-section {
    margin-top: 20px;
}

.hadith-results-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px;
}

.hadith-results-kicker {
    margin: 0 0 2px;
    color: var(--hadith-primary);
    font-size: 12px;
    font-weight: 700;
}

.hadith-results-header h2 {
    margin: 0;
    color: var(--hadith-text);
    font-size: 24px;
}

.hadith-results-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: 6px;
}

.hadith-results-meta span {
    padding: 5px 9px;
    color: var(--hadith-muted);
    background: var(--hadith-surface);
    font-size: 11px;
    border: 1px solid var(--hadith-border);
    border-radius: 999px;
}

.hadith-results {
    display: grid;
    gap: 12px;
}

.hadith-card {
    position: relative;
    overflow: hidden;
    padding: 18px 18px 15px;
    background: var(--hadith-surface);
    border: 1px solid var(--hadith-border);
    border-radius: 16px;
    box-shadow: 0 7px 20px rgba(31, 67, 42, 0.04);
}

.hadith-card::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    content: "";
    background: var(--hadith-primary);
    opacity: .72;
}

.hadith-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 11px;
}

.hadith-card__source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--hadith-primary);
    font-size: 11px;
    font-weight: 700;
}

.hadith-card__number {
    color: var(--hadith-muted);
    font-size: 11px;
}

.hadith-card__text {
    margin: 0;
    color: var(--hadith-text);
    font-family: var(--font3, "Amiri", "Traditional Arabic", serif);
    font-size: clamp(19px, 2.5vw, 23px);
    line-height: 2.05;
    white-space: pre-line;
}

.hadith-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
}

.hadith-card__meta span {
    padding: 6px 9px;
    color: var(--hadith-muted);
    background: var(--hadith-surface-soft);
    font-size: 11px;
    line-height: 1.5;
    border: 1px solid var(--hadith-border);
    border-radius: 8px;
}

.hadith-card__meta strong {
    color: var(--hadith-text);
    font-weight: 700;
}

.hadith-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--hadith-border);
}

.hadith-card__actions button,
.hadith-card__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 11px;
    color: var(--hadith-muted);
    background: transparent;
    font-family: inherit;
    font-size: 11px;
    text-decoration: none;
    border: 1px solid var(--hadith-border);
    border-radius: 8px;
    cursor: pointer;
}

.hadith-card__actions button:hover,
.hadith-card__actions a:hover {
    color: var(--hadith-primary);
    border-color: rgba(47, 110, 57, .28);
}

.hadith-results-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 16px;
}

.hadith-expand-button,
.hadith-official-link {
    min-height: 42px;
    padding: 0 15px;
    font-family: inherit;
    font-size: 13px;
    border-radius: 10px;
}

.hadith-expand-button {
    color: #fff;
    background: var(--hadith-primary);
    border: 0;
    cursor: pointer;
}

.hadith-official-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--hadith-primary);
    background: var(--hadith-surface);
    text-decoration: none;
    border: 1px solid rgba(47, 110, 57, .18);
}

/* ==========================================================
   Empty state
   ========================================================== */

.hadith-empty-state {
    margin-top: 20px;
    padding: 34px 20px;
    text-align: center;
    background: var(--hadith-surface);
    border: 1px solid var(--hadith-border);
    border-radius: 16px;
}

.hadith-empty-state__icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin: 0 auto 9px;
    place-items: center;
    color: var(--hadith-muted);
    background: var(--hadith-surface-soft);
    font-size: 25px;
    border-radius: 50%;
}

.hadith-empty-state h2 {
    margin: 0 0 6px;
    font-size: 21px;
}

.hadith-empty-state p {
    width: min(590px, 100%);
    margin: 0 auto 14px;
    color: var(--hadith-muted);
    font-size: 13px;
    line-height: 1.9;
}

.hadith-empty-state a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 0 14px;
    color: var(--hadith-primary);
    text-decoration: none;
    border: 1px solid rgba(47, 110, 57, .18);
    border-radius: 9px;
}

/* ==========================================================
   تنبيه علمي
   ========================================================== */

.hadith-disclaimer {
    margin-top: 20px;
    padding: 14px 16px;
    color: var(--hadith-muted);
    background: var(--hadith-surface-soft);
    font-size: 12px;
    line-height: 1.9;
    border-right: 3px solid rgba(47, 110, 57, .42);
    border-radius: 10px;
}

.hadith-disclaimer strong {
    color: var(--hadith-text);
}

/* ==========================================================
   الوضع الليلي
   ========================================================== */

html[data-theme="dark"] .hadith-page,
body[data-theme="dark"] .hadith-page,
html.dark-mode .hadith-page,
body.dark-mode .hadith-page {
    --hadith-surface: var(--eq-theme-surface, #19241f);
    --hadith-surface-soft: rgba(255, 255, 255, .035);
    --hadith-text: var(--eq-theme-text, #e7eee9);
    --hadith-muted: var(--eq-theme-muted, #a8b6ae);
    --hadith-border: rgba(255, 255, 255, .09);
    --hadith-shadow: 0 14px 42px rgba(0, 0, 0, .15);
}

/* تحسينات صريحة للوضع الليلي */
html[data-theme="dark"] .hadith-search-box,
body[data-theme="dark"] .hadith-search-box,
html.dark-mode .hadith-search-box,
body.dark-mode .hadith-search-box {
    background: rgba(255, 255, 255, .035);
    border-color: rgba(255, 255, 255, .10);
}

html[data-theme="dark"] .hadith-search-box:focus-within,
body[data-theme="dark"] .hadith-search-box:focus-within,
html.dark-mode .hadith-search-box:focus-within,
body.dark-mode .hadith-search-box:focus-within {
    background: rgba(255, 255, 255, .045);
    border-color: rgba(104, 171, 116, .55);
    box-shadow: 0 0 0 4px rgba(76, 145, 89, .13);
}

html[data-theme="dark"] .hadith-search-box button,
body[data-theme="dark"] .hadith-search-box button,
html.dark-mode .hadith-search-box button,
body.dark-mode .hadith-search-box button {
    color: #b9dec0;
    background: rgba(255, 255, 255, .045);
    border-color: rgba(126, 190, 136, .22);
    box-shadow: none;
}

html[data-theme="dark"] .hadith-search-box button:hover,
body[data-theme="dark"] .hadith-search-box button:hover,
html.dark-mode .hadith-search-box button:hover,
body.dark-mode .hadith-search-box button:hover {
    color: #ffffff;
    background: var(--hadith-primary);
    border-color: var(--hadith-primary);
}

html[data-theme="dark"] .hadith-provider-option > span,
body[data-theme="dark"] .hadith-provider-option > span,
html.dark-mode .hadith-provider-option > span,
body.dark-mode .hadith-provider-option > span,
html[data-theme="dark"] .hadith-search-options select,
body[data-theme="dark"] .hadith-search-options select,
html.dark-mode .hadith-search-options select,
body.dark-mode .hadith-search-options select {
    color: var(--hadith-text);
    background: rgba(255, 255, 255, .035);
    border-color: rgba(255, 255, 255, .09);
}

html[data-theme="dark"] .hadith-provider-option input:checked + span,
body[data-theme="dark"] .hadith-provider-option input:checked + span,
html.dark-mode .hadith-provider-option input:checked + span,
body.dark-mode .hadith-provider-option input:checked + span {
    background: rgba(69, 139, 81, .15);
    border-color: rgba(104, 171, 116, .45);
}

html[data-theme="dark"] .hadith-secondary-button,
body[data-theme="dark"] .hadith-secondary-button,
html.dark-mode .hadith-secondary-button,
body.dark-mode .hadith-secondary-button {
    color: var(--hadith-muted);
    border-color: rgba(255, 255, 255, .10);
}

html[data-theme="dark"] .hadith-card,
body[data-theme="dark"] .hadith-card,
html.dark-mode .hadith-card,
body.dark-mode .hadith-card,
html[data-theme="dark"] .hadith-source-status,
body[data-theme="dark"] .hadith-source-status,
html.dark-mode .hadith-source-status,
body.dark-mode .hadith-source-status,
html[data-theme="dark"] .hadith-loading,
body[data-theme="dark"] .hadith-loading,
html.dark-mode .hadith-loading,
body.dark-mode .hadith-loading {
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

html[data-theme="dark"] .hadith-notice,
body[data-theme="dark"] .hadith-notice,
html.dark-mode .hadith-notice,
body.dark-mode .hadith-notice {
    background: rgba(69, 139, 81, .10);
    border-color: rgba(104, 171, 116, .18);
}

html[data-theme="dark"] .hadith-notice[data-type="warning"],
body[data-theme="dark"] .hadith-notice[data-type="warning"],
html.dark-mode .hadith-notice[data-type="warning"],
body.dark-mode .hadith-notice[data-type="warning"] {
    background: rgba(171, 126, 46, .11);
    border-color: rgba(203, 157, 75, .20);
}

html[data-theme="dark"] .hadith-notice[data-type="error"],
body[data-theme="dark"] .hadith-notice[data-type="error"],
html.dark-mode .hadith-notice[data-type="error"],
body.dark-mode .hadith-notice[data-type="error"] {
    background: rgba(175, 72, 72, .10);
    border-color: rgba(206, 100, 100, .18);
}

/* ==========================================================
   Responsive
   ========================================================== */

@media (max-width: 700px) {

    .hadith-page {
        width: min(100% - 16px, 1180px);
        padding-top: 14px;
    }

    .hadith-hero {
        padding: 26px 15px 23px;
        border-radius: 17px;
    }

    .hadith-hero__description {
        font-size: 13px;
    }

    .hadith-search-panel {
        padding: 14px;
        border-radius: 14px;
    }

    .hadith-search-box {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hadith-search-box input {
        min-height: 54px;
        font-size: 16px;
    }

    .hadith-search-box button {
        min-height: 42px;
    }

    .hadith-search-options {
        align-items: stretch;
        flex-direction: column;
    }

    .hadith-search-options label {
        justify-content: space-between;
    }

    .hadith-search-options select,
    .hadith-secondary-button {
        min-height: 42px;
    }

    .hadith-source-status__header,
    .hadith-results-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .hadith-results-meta {
        justify-content: flex-start;
    }

    .hadith-card {
        padding: 15px 14px 13px;
        border-radius: 13px;
    }

    .hadith-card__text {
        font-size: 19px;
        line-height: 2;
    }

    .hadith-card__actions button,
    .hadith-card__actions a {
        flex: 1;
        min-width: 90px;
    }

}

@media (prefers-reduced-motion: reduce) {

    .hadith-loading__spinner {
        animation: none;
    }

    .hadith-search-box input,
    .hadith-search-box button {
        transition: none;
    }

}


/* ==========================================================
   رابط فحص المصادر
   ========================================================== */

.hadith-diagnostics-link {
    margin-top: 16px;
    text-align: center;
}

.hadith-diagnostics-link a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: 0 13px;
    color: var(--hadith-muted);
    background: var(--hadith-surface);
    font-size: 12px;
    text-decoration: none;
    border: 1px solid var(--hadith-border);
    border-radius: 9px;
}

.hadith-diagnostics-link a:hover {
    color: var(--hadith-primary);
    border-color: rgba(47, 110, 57, .26);
}


@media (max-width: 700px) {
    .hadith-provider-options {
        grid-template-columns: 1fr;
    }

    .hadith-provider-option > span {
        min-height: 50px;
    }

    .hadith-search-box {
        display: flex;
        padding: 5px;
    }

    .hadith-search-box input {
        min-height: 47px;
        padding: 0 10px;
        font-size: 15px;
    }

    .hadith-search-box button {
        min-width: 44px;
        width: 44px;
        height: 42px;
        min-height: 42px;
        padding: 0;
        border-radius: 9px;
    }

    .hadith-search-button__icon {
        width: 15px;
        height: 15px;
        flex-basis: 15px;
    }

    .hadith-search-box button span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }
}
