/*
 * // File: /public/assets/fhdx/css/app.css
 *
 * Developed by Noor United Est.
 *
 * Website: www.noor-united.com
 *
 * Kuwait
 * Tel: +965-22280990
 * Mobile: +965-60005677
 *
 * Bahrain
 * Tel: +973-16612020 / +973-16613030
 * Mobile: +973-37616010
 *
 * Copyright (c) Noor United Est.
 * All rights reserved.
 */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

:root {
    --fhdx-blue: #075df0;
    --fhdx-dark: #050505;
    --fhdx-text: #0f172a;
    --fhdx-muted: #64748b;
    --fhdx-border: #e5e7eb;
    --fhdx-soft: #f8fafc;
    --fhdx-success: #16a34a;
    --fhdx-danger: #dc2626;
    --fhdx-warning: #f59e0b;
    --fhdx-gold: #d8a72e;
}

* {
    box-sizing: border-box;
}

html,
body,
input,
select,
textarea,
button {
    font-family: 'Tajawal', Tahoma, Arial, sans-serif;
}

html,
body {
    width: 100%;
    max-width: 100%;
}

body {
    margin: 0;
    background: #fff;
    color: var(--fhdx-text);
}

a {
    color: inherit;
    text-decoration: none;
}

svg {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

.fhdx-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

.fhdx-main {
    min-height: calc(100vh - 150px);
}

.fhdx-section {
    padding: 55px 0;
}

.fhdx-section.compact {
    padding: 42px 0;
}

.fhdx-center-title {
    text-align: center;
    margin-bottom: 30px;
}

.fhdx-center-title h2 {
    margin: 0 0 10px;
    font-size: 34px;
    font-weight: 900;
}

.fhdx-center-title p {
    margin: 0;
    color: var(--fhdx-muted);
}

.fhdx-muted {
    color: var(--fhdx-muted);
}

.fhdx-green {
    color: var(--fhdx-success);
}

.fhdx-red {
    color: var(--fhdx-danger);
}

.fhdx-error {
    margin-bottom: 15px;
    padding: 14px;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-radius: 16px;
}

.fhdx-header,
.fhdx-footer {
    background: var(--fhdx-dark);
    color: #fff;
}

.fhdx-header {
    position: relative;
    z-index: 99;
}

.fhdx-header-inner {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.fhdx-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 29px;
    font-weight: 900;
}

.fhdx-brand img {
    height: 90px;
    width: auto;
    border-radius: 8px;
}

.fhdx-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #f8fafc;
    font-size: 15px;
    font-weight: 700;
}

.fhdx-nav a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.fhdx-nav a:hover,
.fhdx-nav a.active,
.fhdx-dropdown.active > a {
    color: #60a5fa;
}

.fhdx-dropdown {
    position: relative;
}

.fhdx-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    min-width: 190px;
    padding: 10px;
    background: #111827;
    border: 1px solid #2d3748;
    border-radius: 14px;
}

[dir="rtl"] .fhdx-dropdown-menu {
    right: 0;
    left: auto;
}

.fhdx-dropdown:hover .fhdx-dropdown-menu {
    display: block;
}

.fhdx-dropdown-menu a {
    display: block;
    padding: 10px;
    border-radius: 10px;
}

.fhdx-dropdown-menu a:hover,
.fhdx-dropdown-menu a.active {
    background: #1f2937;
}

.fhdx-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fhdx-lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid #334155;
    border-radius: 999px;
}

.fhdx-lang-switch a {
    padding: 6px 9px;
    color: #cbd5e1;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.fhdx-lang-switch a.active {
    background: #fff;
    color: var(--fhdx-dark);
}

.fhdx-login {
    padding: 10px 18px;
    border: 1px solid #334155;
    border-radius: 10px;
    font-weight: 800;
}

.fhdx-mobile-menu-btn,
.fhdx-mobile-close,
.fhdx-mobile-backdrop,
.fhdx-mobile-drawer {
    display: none;
}

.fhdx-btn,
.fhdx-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 54px;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 900;
    transition: .18s;
}

.fhdx-btn {
    background: var(--fhdx-blue);
    color: #fff;
    box-shadow: 0 10px 24px rgba(7, 93, 240, .18);
}

.fhdx-btn:hover {
    background: #034bcc;
    transform: translateY(-1px);
}

.fhdx-btn-outline {
    background: #fff;
    color: var(--fhdx-text);
    border: 1px solid #dbe3ee;
}

.fhdx-btn-outline:hover {
    background: var(--fhdx-soft);
}

.fhdx-header-btn {
    padding: 10px 18px;
}

.fhdx-btn-wide {
    width: 100%;
}

.gold-btn {
    background: var(--fhdx-gold);
    color: #111;
}

.gold-btn:hover {
    background: #c99720;
}

.fhdx-card {
    background: #fff;
    border: 1px solid var(--fhdx-border);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .06);
}

.fhdx-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.fhdx-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.fhdx-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: calc(100vh - 150px);
}



.fhdx-sidebar {
    background: var(--fhdx-soft);
    border-right: 1px solid var(--fhdx-border);
    padding: 22px;
}

[dir="rtl"] .fhdx-sidebar {
    border-right: 0;
    border-left: 1px solid var(--fhdx-border);
}

.fhdx-side-link {
    display: block;
    padding: 13px 14px;
    border-radius: 14px;
    color: #334155;
    font-weight: 700;
}

.fhdx-side-link:hover,
.fhdx-side-link.active {
    background: #e0ecff;
    color: #1d4ed8;
}

.fhdx-content {
    padding: 28px;
    background: #fff;
}

.fhdx-page-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 22px;
}

.fhdx-page-title {
    color: var(--fhdx-text);
    font-size: 30px;
    font-weight: 900;
}

.fhdx-price {
    color: var(--fhdx-text);
    font-size: 40px;
    font-weight: 900;
}

.fhdx-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 54px;
    padding: 42px 24px;
    color: #d1d5db;
}

.fhdx-footer-grid h4 {
    margin: 0 0 16px;
    color: #fff;
}

.fhdx-footer-grid a {
    display: block;
    margin: 9px 0;
    color: #d1d5db;
}

.fhdx-footer-grid p {
    color: #d1d5db;
    line-height: 1.7;
}

.fhdx-footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 26px;
}

.fhdx-footer-brand img {
    height: 42px;
    border-radius: 8px;
}

.fhdx-contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fhdx-contact-line svg {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fhdx-contact-line span {
    direction: ltr;
    unicode-bidi: plaintext;
}

.fhdx-social {
    display: flex;
    gap: 10px;
}

.fhdx-social span {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #334155;
    border-radius: 50%;
}

.fhdx-copyright {
    padding: 18px 24px;
    border-top: 1px solid #111827;
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
}

@media (max-width: 1100px) {
    .fhdx-layout,
    .fhdx-grid-3,
    .fhdx-grid-2,
    .fhdx-footer-grid {
        grid-template-columns: 1fr;
    }

    .fhdx-header .fhdx-nav {
        display: none;
    }

    .fhdx-sidebar {
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid var(--fhdx-border);
    }
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    .fhdx-container {
        padding: 0 16px;
    }

    .fhdx-header {
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .fhdx-header > .fhdx-container {
        width: 100%;
        max-width: none;
        padding-right: 14px;
        padding-left: 14px;
    }

    .fhdx-header-inner {
        height: 64px;
        gap: 10px;
        padding: 0;
    }

    .fhdx-brand {
        flex-shrink: 0;
        gap: 8px;
        font-size: 18px;
    }

    .fhdx-brand img {
        height: 42px;
        border-radius: 6px;
    }

    .fhdx-header-actions {
        margin-inline-start: auto;
        gap: 6px;
    }

    .fhdx-header-actions .fhdx-login,
    .fhdx-header-actions .fhdx-header-btn,
    .fhdx-login,
    .fhdx-header-btn {
        display: none;
    }

    .fhdx-lang-switch {
        padding: 3px;
        transform: scale(.92);
        transform-origin: center;
    }

    .fhdx-mobile-menu-btn {
        display: inline-flex;
        width: 42px;
        height: 42px;
        flex: 0 0 auto;
        align-items: center;
        justify-content: center;
        background: #111827;
        color: #fff;
        border: 1px solid #334155;
        border-radius: 12px;
        cursor: pointer;
    }

    .fhdx-mobile-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 1000;
        background: rgba(2, 6, 23, .6);
        backdrop-filter: blur(3px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .35s ease;
    }

    .fhdx-mobile-drawer {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1001;
        width: 86%;
        max-width: 340px;
        height: 100vh;
        padding: 18px;
        background: #050505;
        color: #fff;
        box-shadow: -24px 0 80px rgba(0, 0, 0, .35);
        transform: translateX(110%);
        transition: transform .45s cubic-bezier(.16, 1, .3, 1);
        will-change: transform;
    }

    [dir="rtl"] .fhdx-mobile-drawer {
        right: auto;
        left: 0;
        box-shadow: 24px 0 80px rgba(0, 0, 0, .35);
        transform: translateX(-110%);
    }

    body.fhdx-menu-open .fhdx-mobile-backdrop {
        opacity: 1;
        pointer-events: auto;
    }

    body.fhdx-menu-open .fhdx-mobile-drawer {
        transform: translateX(0);
    }

    .fhdx-mobile-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 22px;
        padding-bottom: 14px;
        border-bottom: 1px solid #1f2937;
    }

    .fhdx-mobile-close {
        display: inline-flex;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        background: #111827;
        color: #fff;
        border: 1px solid #334155;
        border-radius: 12px;
        cursor: pointer;
    }

    .fhdx-mobile-drawer .fhdx-nav {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .fhdx-mobile-drawer .fhdx-nav a,
    .fhdx-mobile-drawer .fhdx-dropdown > a {
        display: flex;
        padding: 13px 12px;
        background: #0b1220;
        color: #fff;
        border-radius: 12px;
    }

    .fhdx-mobile-drawer .fhdx-dropdown-menu {
        position: static;
        display: block;
        min-width: auto;
        margin-top: 8px;
        padding: 0;
        background: transparent;
        border: 0;
    }

    .fhdx-mobile-drawer-actions {
        display: grid;
        gap: 10px;
        margin-top: 22px;
    }

    .fhdx-mobile-drawer-actions .fhdx-login,
    .fhdx-mobile-drawer-actions .fhdx-btn {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .fhdx-main {
        width: 100%;
        overflow-x: hidden;
    }

    .fhdx-section,
    .fhdx-section.compact {
        padding: 34px 0;
    }

    .fhdx-center-title {
        margin-bottom: 22px;
    }

    .fhdx-center-title h2 {
        font-size: 24px;
        line-height: 1.35;
    }

    .fhdx-center-title p {
        max-width: 310px;
        margin: 0 auto;
        font-size: 13px;
        line-height: 1.7;
    }

    .fhdx-footer-grid {
        gap: 22px;
        padding: 32px 18px;
        text-align: center;
    }

    .fhdx-footer-brand,
    .fhdx-social,
    .fhdx-contact-line {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .fhdx-container {
        padding: 0 14px;
    }

    .fhdx-header-inner {
        height: 58px;
    }

    .fhdx-brand img {
        height: 46px;
    }
}

.auth-page{
    min-height:calc(100vh - 170px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:70px 20px;
    background:#f5f7fb;
}

.auth-card{
    width:100%;
    max-width:460px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:24px;
    padding:34px;
    box-shadow:0 20px 60px rgba(15,23,42,.08);
}

.auth-card h1{
    margin:0 0 24px;
    font-size:30px;
    font-weight:800;
    color:#0f172a;
}

.auth-card form{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.auth-card label{
    display:flex;
    flex-direction:column;
    gap:8px;
    font-size:14px;
    font-weight:700;
    color:#334155;
}

.auth-card input[type="email"],
.auth-card input[type="password"],
.auth-card input[type="text"]{
    width:100%;
    height:48px;
    border:1px solid #cbd5e1;
    border-radius:14px;
    padding:0 14px;
    font-size:15px;
    outline:none;
}

.auth-card input:focus{
    border-color:#0f172a;
    box-shadow:0 0 0 4px rgba(15,23,42,.08);
}

.auth-check{
    flex-direction:row !important;
    align-items:center;
    font-weight:500 !important;
}

.auth-check input{
    width:16px;
    height:16px;
}

.auth-card button{
    height:50px;
    border:0;
    border-radius:15px;
    background:#050505;
    color:#fff;
    font-size:16px;
    font-weight:800;
    cursor:pointer;
}

.auth-card button:hover{
    opacity:.9;
}

.auth-card p{
    margin:20px 0 0;
    text-align:center;
    color:#475569;
}

.auth-card a{
    color:#050505;
    font-weight:800;
    text-decoration:none;
}

.auth-alert{
    margin-bottom:16px;
    padding:12px 14px;
    border-radius:14px;
    background:#fee2e2;
    color:#991b1b;
    font-weight:700;
}

.fhdx-dashboard-page{
    width:100%;
    max-width:1180px;
    margin:0 auto;
}

.fhdx-dashboard-action{
    margin-top:18px;
}

@media (max-width: 768px){
    .fhdx-dashboard-page{
        padding:0 14px;
    }

    .fhdx-grid-3{
        grid-template-columns:1fr !important;
    }

    .fhdx-dashboard-page .fhdx-card{
        width:100%;
        text-align:center;
    }
}

.fhdx-header-menu{
    position:relative;
}

.fhdx-header-menu-btn{
    height:44px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:0 14px;
    background:#0b0b0b;
    color:#fff;
    border:1px solid #334155;
    border-radius:14px;
    font-family:inherit;
    font-size:14px;
    font-weight:900;
    cursor:pointer;
}

.fhdx-header-menu-btn.is-icon{
    width:48px;
    padding:0;
    gap:4px;
}

.fhdx-menu-arrow{
    font-size:11px;
    opacity:.75;
}

.fhdx-header-menu-panel{
    position:absolute;
    top:calc(100% + 10px);
    left:0;
    z-index:999;
    min-width:190px;
    padding:10px;
    background:#111827;
    border:1px solid #334155;
    border-radius:16px;
    box-shadow:0 22px 55px rgba(0,0,0,.32);
    opacity:0;
    visibility:hidden;
    transform:translateY(8px);
    transition:.18s ease;
}

[dir="rtl"] .fhdx-header-menu-panel{
    right:0;
    left:auto;
}

.fhdx-header-menu:hover .fhdx-header-menu-panel,
.fhdx-header-menu:focus-within .fhdx-header-menu-panel{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.fhdx-header-menu-panel a,
.fhdx-header-menu-panel button{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    padding:11px 12px;
    background:transparent;
    color:#f8fafc;
    border:0;
    border-radius:11px;
    font-family:inherit;
    font-size:14px;
    font-weight:800;
    text-align:inherit;
    cursor:pointer;
}

.fhdx-header-menu-panel a:hover,
.fhdx-header-menu-panel a.active,
.fhdx-header-menu-panel button:hover{
    background:#1f2937;
    color:#60a5fa;
}

.fhdx-header-menu-title{
    padding:9px 12px 11px;
    margin-bottom:6px;
    color:#94a3b8;
    font-size:13px;
    font-weight:900;
    border-bottom:1px solid #1f2937;
}

.fhdx-header-menu-form{
    margin:6px 0 0;
    padding-top:6px;
    border-top:1px solid #1f2937;
}

@media (max-width:768px){
    .fhdx-header-actions{
        display:none;
    }
}
.fhdx-dashboard-actions{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:18px;
    margin-top:18px;
}

.fhdx-dashboard-link{
    display:block;
}

.fhdx-dashboard-link strong{
    display:block;
    margin-bottom:8px;
    font-size:20px;
    font-weight:900;
}

.fhdx-dashboard-link span{
    color:var(--fhdx-muted);
}

.fhdx-dashboard-recent{
    margin-top:18px;
}

.fhdx-dashboard-section-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:16px;
}

.fhdx-dashboard-section-head h2{
    margin:0;
}

.fhdx-dashboard-section-head a,
.fhdx-dashboard-table a{
    color:var(--fhdx-blue);
    font-weight:900;
}

.fhdx-dashboard-table-wrap{
    width:100%;
    overflow-x:auto;
}

.fhdx-dashboard-table{
    width:100%;
    border-collapse:collapse;
    min-width:760px;
}

.fhdx-dashboard-table th,
.fhdx-dashboard-table td{
    padding:14px 12px;
    border-bottom:1px solid var(--fhdx-border);
    text-align:start;
}

.fhdx-dashboard-table th{
    color:#334155;
    font-weight:900;
    background:#f8fafc;
}

.fhdx-empty-state{
    padding:34px 20px;
    text-align:center;
    background:#f8fafc;
    border:1px dashed #cbd5e1;
    border-radius:18px;
}

.fhdx-empty-state strong{
    display:block;
    margin-bottom:8px;
    font-size:22px;
    font-weight:900;
}

.fhdx-empty-state p{
    margin:0 0 18px;
    color:var(--fhdx-muted);
}

@media (max-width:1100px){
    .fhdx-dashboard-actions{
        grid-template-columns:1fr;
    }
}
.fhdx-dashboard-page .fhdx-grid-3{
    grid-template-columns:repeat(4, minmax(0, 1fr));
}

.fhdx-dashboard-actions{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:18px;
    margin:18px 0;
    clear:both;
}

.fhdx-dashboard-link{
    min-height:120px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:8px;
}

.fhdx-dashboard-recent{
    margin-top:18px;
    clear:both;
}

@media (max-width:1100px){
    .fhdx-dashboard-page .fhdx-grid-3,
    .fhdx-dashboard-actions{
        grid-template-columns:1fr !important;
    }
}
.fhdx-history-page{
    width:100%;
}

.fhdx-history-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    margin-bottom:18px;
}

.fhdx-history-header h2{
    margin:0 0 8px;
    font-size:26px;
    font-weight:900;
}

.fhdx-history-header p{
    margin:0;
    color:var(--fhdx-muted);
}

.fhdx-history-card{
    overflow:hidden;
}

.fhdx-history-table-wrap{
    width:100%;
    overflow-x:auto;
}

.fhdx-history-table{
    width:100%;
    min-width:900px;
    border-collapse:collapse;
}

.fhdx-history-table th,
.fhdx-history-table td{
    padding:15px 14px;
    border-bottom:1px solid var(--fhdx-border);
    text-align:start;
    white-space:nowrap;
}

.fhdx-history-table th{
    background:#f8fafc;
    color:#334155;
    font-weight:900;
}

.fhdx-history-table tr:hover td{
    background:#f8fafc;
}

.fhdx-btn-sm{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:36px;
    padding:8px 14px;
    border-radius:10px;
    background:var(--fhdx-blue);
    color:#fff;
    font-size:13px;
    font-weight:900;
}

.fhdx-signal{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:80px;
    padding:6px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:900;
    background:#e2e8f0;
    color:#334155;
}

.fhdx-signal.bullish,
.fhdx-signal.buy{
    background:#dcfce7;
    color:#166534;
}

.fhdx-signal.bearish,
.fhdx-signal.sell{
    background:#fee2e2;
    color:#991b1b;
}

.fhdx-signal.neutral{
    background:#f1f5f9;
    color:#475569;
}

.fhdx-pagination{
    margin-top:18px;
}

@media (max-width:768px){
    .fhdx-history-header{
        flex-direction:column;
        align-items:stretch;
    }

    .fhdx-history-header .fhdx-btn{
        width:100%;
    }
}

.fhdx-history-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
    margin:18px 0;
}

.fhdx-history-stats div{
    background:#0f172a;
    color:#ffffff;
    border-radius:18px;
    padding:18px;
    text-align:center;
}

.fhdx-history-stats strong{
    display:block;
    font-size:28px;
    font-weight:900;
    line-height:1;
}

.fhdx-history-stats span{
    display:block;
    margin-top:7px;
    font-size:13px;
    opacity:.75;
}

@media (max-width:768px){
    .fhdx-history-stats{
        grid-template-columns:repeat(2,1fr);
    }
}
.fhdx-report-meta-section{
    padding:24px 0 0;
    background:#f6f8fc;
}

.fhdx-report-meta-card{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:12px;
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:22px;
    padding:16px;
    box-shadow:0 14px 35px rgba(15,23,42,.06);
}

.fhdx-report-meta-card > div{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:14px;
}

.fhdx-report-meta-label{
    display:block;
    color:#64748b;
    font-size:12px;
    font-weight:700;
    margin-bottom:6px;
}

.fhdx-report-meta-card strong{
    display:block;
    color:#0f172a;
    font-size:15px;
    font-weight:900;
}

@media (max-width:992px){
    .fhdx-report-meta-card{
        grid-template-columns:repeat(2,1fr);
    }
}

@media (max-width:520px){
    .fhdx-report-meta-card{
        grid-template-columns:1fr;
    }
}