/* ============================================================
   FYSIOHUB ACCOUNT
   ============================================================ */

:root {

    --fh-account-purple: #6956E8;
    --fh-account-purple-dark: #5541D7;
    --fh-account-purple-light: #F1EEFF;

    --fh-account-turquoise: #28C7B7;
    --fh-account-turquoise-dark: #19A999;
    --fh-account-turquoise-light: #E8FAF7;

    --fh-account-navy: #102A43;
    --fh-account-navy-light: #334E68;

    --fh-account-muted: #6B7C8F;

    --fh-account-white: #FFFFFF;

    --fh-account-bg: #F7F9FC;

    --fh-account-border: #E7ECF2;

    --fh-account-container: 1240px;

}


/* ============================================================
   RESET
   ============================================================ */

.fh-account-page,
.fh-account-page * {
    box-sizing: border-box;
}

.fh-account-page {

    width: 100vw;
    max-width: 100vw;

    position: relative;

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    overflow: hidden;

    background: var(--fh-account-bg);

    color: var(--fh-account-navy);

    font-family: "Montserrat", sans-serif;

}

.fh-account-page a {
    text-decoration: none;
}

.fh-account-page h1,
.fh-account-page h2,
.fh-account-page h3,
.fh-account-page p {
    margin-top: 0;
}

.fh-account-container {

    width: calc(100% - 48px);

    max-width: var(--fh-account-container);

    margin: 0 auto;

}


/* ============================================================
   SHELL
   ============================================================ */

.fh-account-shell {

    min-height: 800px;

    padding: 75px 0 110px;

    background:

        radial-gradient(
            circle at 5% 3%,
            rgba(105, 86, 232, 0.08),
            transparent 25%
        ),

        radial-gradient(
            circle at 96% 12%,
            rgba(40, 199, 183, 0.08),
            transparent 24%
        ),

        var(--fh-account-bg);

}


/* ============================================================
   TOPBAR
   ============================================================ */

.fh-account-topbar {

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    margin-bottom: 42px;

}

.fh-account-topbar > div:first-child {

    max-width: 720px;

}

.fh-account-eyebrow {

    display: inline-flex;

    margin-bottom: 13px;

    color: var(--fh-account-purple);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 0.11em;

    text-transform: uppercase;

}

.fh-account-topbar h1 {

    margin-bottom: 12px;

    color: var(--fh-account-navy);

    font-size: clamp(
        38px,
        4.5vw,
        57px
    );

    font-weight: 780;

    line-height: 1.04;

    letter-spacing: -0.05em;

}

.fh-account-topbar h1 span {

    color: var(--fh-account-purple);

}

.fh-account-topbar p {

    margin-bottom: 0;

    color: var(--fh-account-muted);

    font-size: 16px;

    line-height: 1.7;

}


/* ============================================================
   BUTTONS
   ============================================================ */

.fh-account-primary-button {

    min-height: 50px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    flex: 0 0 auto;

    padding: 0 18px;

    border-radius: 12px;

    background:

        linear-gradient(
            135deg,
            var(--fh-account-purple),
            var(--fh-account-purple-dark)
        );

    color: #fff;

    font-size: 13px;

    font-weight: 750;

    box-shadow:

        0 10px 26px
        rgba(105, 86, 232, 0.22);

}

.fh-account-secondary-button,
.fh-account-mini-button {

    border:
        1px solid var(--fh-account-border)
        !important;

    background: #fff !important;

    color:
        var(--fh-account-navy)
        !important;

    cursor: pointer;

    font-family:
        "Montserrat",
        sans-serif
        !important;

    font-weight: 700 !important;

}

.fh-account-secondary-button {

    width: 100%;

    min-height: 44px;

    border-radius: 11px !important;

    font-size: 12px !important;

}

.fh-account-mini-button {

    min-height: 38px;

    padding: 0 13px !important;

    border-radius: 9px !important;

    font-size: 11px !important;

}

.fh-account-text-button {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color:
        var(--fh-account-purple);

    font-size: 12px;

    font-weight: 750;

}


/* ============================================================
   QUICK CARDS
   ============================================================ */

.fh-account-quick-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;

    margin-bottom: 26px;

}

.fh-account-quick-card {

    min-height: 100px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 17px;

    border:
        1px solid var(--fh-account-border);

    border-radius: 17px;

    background: #fff;

    color:
        var(--fh-account-navy);

    box-shadow:

        0 8px 30px
        rgba(16, 42, 67, 0.04);

    transition:

        transform 0.2s ease,

        box-shadow 0.2s ease,

        border-color 0.2s ease;

}

.fh-account-quick-card:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(105, 86, 232, 0.22);

    box-shadow:

        0 15px 40px
        rgba(16, 42, 67, 0.08);

}

.fh-account-card-icon {

    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        var(--fh-account-purple-light);

    color:
        var(--fh-account-purple);

}

.fh-account-card-icon-turq {

    background:
        var(--fh-account-turquoise-light);

    color:
        var(--fh-account-turquoise-dark);

}

.fh-account-card-icon svg {

    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;

}

.fh-account-quick-card > div:nth-child(2) {

    flex: 1;

}

.fh-account-quick-card strong {

    display: block;

    margin-bottom: 4px;

    color:
        var(--fh-account-navy);

    font-size: 13px;

}

.fh-account-quick-card > div > span {

    display: block;

    color:
        var(--fh-account-muted);

    font-size: 10px;

    line-height: 1.45;

}

.fh-account-arrow {

    color:
        var(--fh-account-purple);

    font-size: 18px;

}


/* ============================================================
   MAIN GRID
   ============================================================ */

.fh-account-main-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.65fr)
        minmax(280px, 0.75fr);

    gap: 24px;

    align-items: start;

}

.fh-account-main-column,
.fh-account-side-column {

    display: flex;

    flex-direction: column;

    gap: 20px;

}


/* ============================================================
   PANELS
   ============================================================ */

.fh-account-panel {

    padding: 27px;

    border:
        1px solid var(--fh-account-border);

    border-radius: 21px;

    background: #fff;

    box-shadow:

        0 10px 35px
        rgba(16, 42, 67, 0.035);

}

.fh-account-panel-heading {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;

}

.fh-account-small-label {

    display: block;

    margin-bottom: 5px;

    color:
        var(--fh-account-purple);

    font-size: 9px;

    font-weight: 850;

    letter-spacing: 0.10em;

    text-transform: uppercase;

}

.fh-account-panel-heading h2 {

    margin-bottom: 0;

    color:
        var(--fh-account-navy);

    font-size: 20px;

    font-weight: 750;

}


/* ============================================================
   EMPTY STATES
   ============================================================ */

.fh-account-empty-state {

    min-height: 265px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 30px;

    border-radius: 16px;

    background:
        var(--fh-account-bg);

    text-align: center;

}

.fh-account-empty-compact {

    min-height: 150px;

}

.fh-account-empty-icon {

    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 16px;

    border-radius: 15px;

    background:
        var(--fh-account-purple-light);

    color:
        var(--fh-account-purple);

}

.fh-account-empty-icon svg {

    width: 24px;
    height: 24px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;

}

.fh-account-empty-state h3 {

    margin-bottom: 8px;

    color:
        var(--fh-account-navy);

    font-size: 16px;

}

.fh-account-empty-state p {

    max-width: 480px;

    margin-bottom: 14px;

    color:
        var(--fh-account-muted);

    font-size: 12px;

    line-height: 1.65;

}


/* ============================================================
   PROFILE PANEL
   ============================================================ */

.fh-account-profile-panel {

    text-align: center;

}

.fh-account-profile-avatar {

    width: 88px;
    height: 88px;

    margin:
        0 auto
        14px;

    overflow: hidden;

    border-radius: 50%;

    background:
        var(--fh-account-purple-light);

}

.fh-account-profile-avatar img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}

.fh-account-profile-panel h2 {

    margin-bottom: 7px;

    color:
        var(--fh-account-navy);

    font-size: 19px;

}

.fh-account-type-badge {

    display: inline-flex;

    margin-bottom: 22px;

    padding: 6px 10px;

    border-radius: 999px;

    background:
        var(--fh-account-purple-light);

    color:
        var(--fh-account-purple);

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.05em;

}

.fh-account-profile-data {

    display: flex;

    flex-direction: column;

    gap: 0;

    margin-bottom: 18px;

    text-align: left;

}

.fh-account-profile-data > div {

    padding: 12px 0;

    border-top:
        1px solid var(--fh-account-border);

}

.fh-account-profile-data span {

    display: block;

    margin-bottom: 4px;

    color:
        var(--fh-account-muted);

    font-size: 9px;

    font-weight: 650;

}

.fh-account-profile-data strong {

    display: block;

    overflow-wrap: anywhere;

    color:
        var(--fh-account-navy);

    font-size: 11px;

    font-weight: 700;

}

.fh-account-side-text {

    margin: 0;

    color:
        var(--fh-account-muted);

    font-size: 12px;

    line-height: 1.65;

}


/* ============================================================
   LOGOUT
   ============================================================ */

.fh-account-logout {

    display: block;

    padding: 11px 12px;

    border-radius: 10px;

    background: #FFF2F2;

    color: #B24444;

    text-align: center;

    font-size: 11px;

    font-weight: 750;

}


/* ============================================================
   PHYSIO STATUS
   ============================================================ */

.fh-physio-status-bar {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 20px;

    padding: 15px 18px;

    border:
        1px solid var(--fh-account-border);

    border-radius: 15px;

    background: #fff;

}

.fh-physio-status-bar > div {

    display: flex;

    align-items: center;

    gap: 11px;

}

.fh-physio-status-dot {

    width: 11px;
    height: 11px;

    flex: 0 0 11px;

    border-radius: 50%;

}

.fh-physio-status-dot.is-verified {

    background:
        var(--fh-account-turquoise);

    box-shadow:

        0 0 0 4px
        rgba(40, 199, 183, 0.14);

}

.fh-physio-status-dot.is-pending {

    background: #E9B949;

    box-shadow:

        0 0 0 4px
        rgba(233, 185, 73, 0.14);

}

.fh-physio-status-bar small {

    display: block;

    margin-bottom: 2px;

    color:
        var(--fh-account-muted);

    font-size: 9px;

}

.fh-physio-status-bar strong {

    display: block;

    color:
        var(--fh-account-navy);

    font-size: 12px;

}

.fh-physio-status-note {

    color:
        var(--fh-account-muted);

    font-size: 10px;

}


/* ============================================================
   PHYSIO STATS
   ============================================================ */

.fh-physio-stat-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 16px;

    margin-bottom: 20px;

}

.fh-physio-stat-grid article {

    padding: 20px;

    border:
        1px solid var(--fh-account-border);

    border-radius: 17px;

    background: #fff;

}

.fh-physio-stat-grid span {

    display: block;

    margin-bottom: 8px;

    color:
        var(--fh-account-muted);

    font-size: 9px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.07em;

}

.fh-physio-stat-grid strong {

    display: block;

    margin-bottom: 3px;

    color:
        var(--fh-account-navy);

    font-size: 28px;

    font-weight: 780;

}

.fh-physio-stat-grid p {

    margin: 0;

    color:
        var(--fh-account-muted);

    font-size: 10px;

}


/* ============================================================
   LOGIN REQUIRED
   ============================================================ */

.fh-account-login-required {

    min-height:
        calc(100vh - 94px);

    display: flex;

    align-items: center;

    padding: 80px 0;

    background:

        radial-gradient(
            circle at 15% 5%,
            rgba(105, 86, 232, 0.10),
            transparent 30%
        ),

        radial-gradient(
            circle at 90% 15%,
            rgba(40, 199, 183, 0.11),
            transparent 28%
        ),

        #fff;

}

.fh-account-login-card {

    max-width: 650px;

    margin: 0 auto;

    padding: 55px;

    border:
        1px solid var(--fh-account-border);

    border-radius: 30px;

    background: #fff;

    text-align: center;

    box-shadow:

        0 22px 70px
        rgba(16, 42, 67, 0.09);

}

.fh-account-login-icon {

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin:
        0 auto
        20px;

    border-radius: 50%;

    background:
        var(--fh-account-purple-light);

    color:
        var(--fh-account-purple);

}

.fh-account-login-icon svg {

    width: 30px;
    height: 30px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;

}

.fh-account-login-card h1 {

    margin-bottom: 13px;

    font-size: 36px;

    color:
        var(--fh-account-navy);

}

.fh-account-login-card p {

    margin-bottom: 24px;

    color:
        var(--fh-account-muted);

    font-size: 14px;

    line-height: 1.7;

}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1050px) {

    .fh-account-quick-grid,
    .fh-physio-stat-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .fh-account-main-grid {

        grid-template-columns: 1fr;

    }

    .fh-account-side-column {

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 750px) {

    .fh-account-container {

        width:
            calc(100% - 30px);

    }

    .fh-account-shell {

        padding:
            55px 0
            80px;

    }

    .fh-account-topbar {

        flex-direction: column;

        align-items: flex-start;

    }

    .fh-account-primary-button {

        width: 100%;

    }

    .fh-account-side-column {

        grid-template-columns: 1fr;

    }

}


@media (max-width: 550px) {

    .fh-account-quick-grid,
    .fh-physio-stat-grid {

        grid-template-columns: 1fr;

    }

    .fh-account-panel {

        padding: 21px;

    }

    .fh-physio-status-bar {

        align-items: flex-start;

        flex-direction: column;

    }

    .fh-account-login-card {

        padding:
            40px 23px;

    }

}

/* ============================================================
   BEHANDELRELATIES - PATIËNT
   ============================================================ */

.fh-treatment-subsection {
    margin-top: 24px;
}

.fh-treatment-section-title {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 700;
    color: #1E293B;
}


/* ============================================================
   VERZOEK
   ============================================================ */

.fh-treatment-request-card,
.fh-active-treatment-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding: 20px;

    border: 1px solid #E2E8F0;
    border-radius: 14px;

    background: #FFFFFF;
}

.fh-treatment-request-card + .fh-treatment-request-card,
.fh-active-treatment-card + .fh-active-treatment-card {
    margin-top: 12px;
}


.fh-treatment-request-info {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}


.fh-treatment-avatar {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;

    border-radius: 50%;
    overflow: hidden;
}

.fh-treatment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.fh-treatment-request-info strong {
    display: block;

    margin-top: 3px;

    font-size: 15px;
    font-weight: 700;

    color: #1E293B;
}


.fh-treatment-request-info p {
    margin: 5px 0 0;

    font-size: 13px;
    line-height: 1.5;

    color: #64748B;
}


.fh-treatment-request-label {
    display: block;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.05em;

    color: #06B6D4;
}


/* ============================================================
   ACTIES
   ============================================================ */

.fh-treatment-request-actions {
    display: flex;
    align-items: center;
    gap: 8px;

    flex-shrink: 0;
}

.fh-treatment-request-actions form {
    margin: 0;
}


.fh-treatment-accept-button,
.fh-treatment-open-button {
    border: 0;

    padding: 10px 16px;

    border-radius: 9px;

    background: #06B6D4;
    color: #FFFFFF;

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.fh-treatment-accept-button:hover {
    background: #0891B2;
    transform: translateY(-1px);
}


.fh-treatment-decline-button {
    padding: 10px 16px;

    border: 1px solid #E2E8F0;
    border-radius: 9px;

    background: #FFFFFF;
    color: #64748B;

    font-family: inherit;
    font-size: 13px;
    font-weight: 600;

    cursor: pointer;
}

.fh-treatment-decline-button:hover {
    border-color: #CBD5E1;
    background: #F8FAFC;
    color: #1E293B;
}


/* ============================================================
   ACTIEVE BEHANDELING
   ============================================================ */

.fh-active-treatment-status {
    display: block;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.04em;

    color: #06B6D4;
}


.fh-treatment-open-button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}
.fh-treatment-open-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    text-decoration: none;
}


/* ============================================================
   MELDINGEN
   ============================================================ */

.fh-treatment-message {
    margin-bottom: 18px;
    padding: 13px 15px;

    border-radius: 10px;

    font-size: 13px;
    font-weight: 500;
}


.fh-treatment-message.is-success {
    background: #ECFEFF;
    border: 1px solid #A5F3FC;
    color: #0891B2;
}


.fh-treatment-message.is-neutral {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #64748B;
}


.fh-treatment-message.is-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #B91C1C;
}


/* ============================================================
   MOBIEL
   ============================================================ */

@media (max-width: 700px) {

    .fh-treatment-request-card,
    .fh-active-treatment-card {
        flex-direction: column;
        align-items: stretch;
    }

    .fh-treatment-request-actions {
        width: 100%;
    }

    .fh-treatment-request-actions form {
        flex: 1;
    }

    .fh-treatment-accept-button,
    .fh-treatment-decline-button,
    .fh-treatment-open-button {
        width: 100%;
    }
}

/* ============================================================
   FYSIO - PATIËNTENOVERZICHT
   ============================================================ */

.fh-patients-dashboard {
    width: 100%;
}


/* ============================================================
   HEADER
   ============================================================ */

.fh-patients-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    margin-bottom: 28px;
}


.fh-patients-heading h2 {
    margin: 4px 0 6px;

    color: #1E293B;

    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
}


.fh-patients-heading p {
    margin: 0;

    color: #64748B;

    font-size: 14px;
    line-height: 1.6;
}


.fh-patient-count {
    min-width: 105px;

    padding: 13px 16px;

    border: 1px solid #A5F3FC;
    border-radius: 12px;

    background: #ECFEFF;

    text-align: center;
}


.fh-patient-count strong {
    display: block;

    color: #0891B2;

    font-size: 22px;
    line-height: 1;
}


.fh-patient-count span {
    display: block;

    margin-top: 5px;

    color: #64748B;

    font-size: 11px;
    font-weight: 600;
}


/* ============================================================
   SECTIES
   ============================================================ */

.fh-patients-section + .fh-patients-section {
    margin-top: 30px;
}


.fh-patients-section-heading {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 12px;
}


.fh-patients-section-heading h3 {
    margin: 0;

    color: #1E293B;

    font-size: 15px;
    font-weight: 700;
}


.fh-patients-section-heading > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 22px;
    height: 22px;

    padding: 0 6px;

    box-sizing: border-box;

    border-radius: 999px;

    background: #ECFEFF;
    color: #0891B2;

    font-size: 11px;
    font-weight: 700;
}


/* ============================================================
   LIJST
   ============================================================ */

.fh-patient-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.fh-patient-row {
    display: grid;

    grid-template-columns:
        minmax(220px, 1.4fr)
        minmax(180px, 1fr)
        auto;

    align-items: center;
    gap: 24px;

    padding: 17px 18px;

    border: 1px solid #E2E8F0;
    border-radius: 13px;

    background: #FFFFFF;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


.fh-patient-row:hover {
    border-color: #A5F3FC;

    box-shadow:
        0 5px 18px
        rgba(6, 182, 212, 0.06);
}


/* ============================================================
   PATIËNT
   ============================================================ */

.fh-patient-person {
    display: flex;
    align-items: center;
    gap: 13px;

    min-width: 0;
}


.fh-patient-avatar {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    overflow: hidden;

    border-radius: 50%;
}


.fh-patient-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.fh-patient-details {
    min-width: 0;
}


.fh-patient-details > strong {
    display: block;

    margin-bottom: 5px;

    overflow: hidden;

    color: #1E293B;

    font-size: 14px;
    font-weight: 700;

    text-overflow: ellipsis;
    white-space: nowrap;
}


.fh-patient-details small {
    display: block;

    margin-top: 5px;

    color: #94A3B8;

    font-size: 11px;
}


/* ============================================================
   STATUS
   ============================================================ */

.fh-patient-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    font-size: 11px;
    font-weight: 600;
}


.fh-patient-status.is-active {
    color: #0891B2;
}


.fh-patient-status.is-active i {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #06B6D4;
}


.fh-patient-status.is-pending {
    color: #94A3B8;
}


/* ============================================================
   VOLGENDE AFSPRAAK
   ============================================================ */

.fh-patient-next-appointment span {
    display: block;

    margin-bottom: 4px;

    color: #94A3B8;

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.04em;
}


.fh-patient-next-appointment strong {
    display: block;

    color: #475569;

    font-size: 12px;
    font-weight: 600;
}


/* ============================================================
   ACTIE
   ============================================================ */

.fh-patient-row-action {
    display: flex;
    justify-content: flex-end;
}


.fh-patient-open-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    padding: 10px 14px;

    border-radius: 9px;

    background: #06B6D4;
    color: #FFFFFF !important;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none !important;

    white-space: nowrap;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.fh-patient-open-button:hover {
    background: #0891B2;

    transform: translateY(-1px);

    box-shadow:
        0 5px 15px
        rgba(6, 182, 212, 0.16);
}


.fh-patient-open-button span {
    font-size: 15px;
}


.fh-patient-waiting {
    display: inline-flex;
    align-items: center;

    padding: 9px 12px;

    border-radius: 999px;

    background: #F1F5F9;
    color: #64748B;

    font-size: 11px;
    font-weight: 600;

    white-space: nowrap;
}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 900px) {

    .fh-patient-row {
        grid-template-columns:
            minmax(200px, 1fr)
            minmax(160px, 1fr);
    }


    .fh-patient-row-action {
        grid-column: 1 / -1;

        justify-content: flex-start;
    }
}


/* ============================================================
   MOBIEL
   ============================================================ */

@media (max-width: 600px) {

    .fh-patients-heading {
        flex-direction: column;
        align-items: flex-start;
    }


    .fh-patient-count {
        min-width: 0;
    }


    .fh-patient-row {
        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 15px;
    }


    .fh-patient-next-appointment {
        padding-top: 12px;

        border-top: 1px solid #F1F5F9;
    }


    .fh-patient-row-action {
        width: 100%;
    }


    .fh-patient-open-button {
        width: 100%;
    }

}

.fh-appointment-manage-action {
    margin-left: auto;
}

.fh-appointment-manage-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 9px 13px;

    border-radius: 8px;

    background: #ECFEFF;
    color: #0891B2 !important;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none !important;
}

.fh-appointment-manage-link:hover {
    background: #CFFAFE;
}

/* ============================================================
   FYSIOHUB NOTIFICATIES
   ============================================================ */

.fh-notifications-panel {
    width: 100%;
}


.fh-notifications-read-button {
    padding: 8px 11px;

    border: 0;
    border-radius: 8px;

    background: #ECFEFF;
    color: #0891B2;

    font-family: inherit;
    font-size: 11px;
    font-weight: 700;

    cursor: pointer;
}


.fh-notifications-read-button:hover {
    background: #CFFAFE;
}


/* ============================================================
   LIJST
   ============================================================ */

.fh-notifications-list {
    display: flex;
    flex-direction: column;
}


.fh-notification-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;

    padding: 14px 4px;

    border-bottom: 1px solid #F1F5F9;

    color: inherit;
    text-decoration: none !important;

    transition: background-color 0.2s ease;
}


.fh-notification-item:last-child {
    border-bottom: 0;
}


.fh-notification-item:hover {
    background: #F8FAFC;
}


.fh-notification-dot {
    width: 7px;
    height: 7px;

    flex: 0 0 7px;

    margin-top: 7px;

    border-radius: 50%;

    background: #CBD5E1;
}


.fh-notification-item.is-unread
.fh-notification-dot {
    background: #06B6D4;
}


.fh-notification-content {
    min-width: 0;
}


.fh-notification-content strong {
    display: block;

    margin-bottom: 3px;

    color: #1E293B;

    font-size: 12px;
    font-weight: 700;
}


.fh-notification-item.is-unread
.fh-notification-content strong {
    color: #0891B2;
}


.fh-notification-content p {
    margin: 0 0 5px;

    color: #64748B;

    font-size: 11px;
    line-height: 1.5;
}


.fh-notification-content span {
    color: #94A3B8;

    font-size: 9px;
}

/* ============================================================
   NIEUWE BERICHTEN
   ============================================================ */

.fh-message-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 21px;
    height: 21px;

    margin-left: 5px;
    padding: 0 6px;

    box-sizing: border-box;

    border-radius: 999px;

    background: #06B6D4;
    color: #FFFFFF;

    font-size: 10px;
    font-weight: 700;

    vertical-align: middle;
}


.fh-message-preview {
    padding: 14px;

    border: 1px solid #A5F3FC;
    border-radius: 11px;

    background: #ECFEFF;
}


.fh-message-preview strong {
    display: block;

    margin-bottom: 4px;

    color: #1E293B;

    font-size: 13px;
}


.fh-message-preview p {
    margin: 0 0 11px;

    color: #64748B;

    font-size: 12px;
    line-height: 1.5;
}


.fh-message-open-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: #0891B2 !important;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none !important;
}


.fh-message-open-link:hover {
    color: #06B6D4 !important;
}

/* ============================================================
   AFSPRAAK HISTORIE
   ============================================================ */

.fh-appointment-history-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}


.fh-history-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 14px 16px;

    border: 1px solid #E2E8F0;
    border-radius: 11px;

    background: #FFFFFF;
}


.fh-history-row > div:first-child strong {
    display: block;

    color: #1E293B;

    font-size: 13px;
    font-weight: 700;
}


.fh-history-row > div:first-child span {
    display: block;

    margin-top: 4px;

    color: #94A3B8;

    font-size: 11px;
}


.fh-history-status {
    display: inline-flex;

    padding: 6px 10px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 700;
}


.fh-history-status.is-confirmed {
    background: #F1F5F9;
    color: #64748B;
}


.fh-history-status.is-completed {
    background: #ECFEFF;
    color: #0891B2;
}


.fh-history-status.is-cancelled {
    background: #FEF2F2;
    color: #B91C1C;
}


.fh-history-status.is-no-show {
    background: #FFF7ED;
    color: #C2410C;
}


.fh-history-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}


.fh-history-actions a {
    color: #0891B2;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;
}


@media (max-width: 600px) {

    .fh-history-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

.fh-review-history-button {
    display: inline-flex;
    align-items: center;

    padding: 7px 10px;

    border-radius: 8px;

    background: #ECFEFF;
    color: #0891B2 !important;

    font-size: 10px;
    font-weight: 700;

    text-decoration: none !important;
}


.fh-review-history-button:hover {
    background: #CFFAFE;
}


.fh-review-done {
    color: #0891B2;

    font-size: 10px;
    font-weight: 700;
}

/* ============================================================
   VIDEOGESPREK STARTEN - ACCOUNT
   ============================================================ */

.fh-account-page .fh-video-join-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 44px;
    padding: 0 18px;

    background: #6c3df4;
    color: #ffffff !important;

    border: 0;
    border-radius: 12px;

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;

    text-decoration: none !important;

    box-shadow: 0 8px 20px rgba(108, 61, 244, 0.18);

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.fh-account-page .fh-video-join-button::before {
    content: "▶";
    font-size: 10px;
}

.fh-account-page .fh-video-join-button:hover {
    background: #5930d8;
    color: #ffffff !important;
    transform: translateY(-1px);

    box-shadow: 0 10px 24px rgba(108, 61, 244, 0.25);
}

.fh-account-page .fh-video-join-button:active {
    transform: translateY(0);
}

/* ============================================================
   GEGEVENS WIJZIGEN / PROFIEL AANPASSEN
   ============================================================ */

.fh-account-page a.fh-account-secondary-button,
.fh-account-page a.fh-account-secondary-button:link,
.fh-account-page a.fh-account-secondary-button:visited {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-height: 44px;
    padding: 0 18px;

    background: #6c3df4 !important;
    background-color: #6c3df4 !important;

    color: #ffffff !important;

    border: none !important;
    border-radius: 12px;

    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;

    text-decoration: none !important;

    box-shadow: 0 8px 20px rgba(108, 61, 244, 0.18);

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


/* Pijltje */

.fh-account-page a.fh-account-secondary-button::after {
    content: "→";
    color: #ffffff !important;
    font-size: 14px;
}


/* Hover */

.fh-account-page a.fh-account-secondary-button:hover {
    background: #5930d8 !important;
    background-color: #5930d8 !important;

    color: #ffffff !important;

    transform: translateY(-1px);

    box-shadow: 0 10px 24px rgba(108, 61, 244, 0.25);
}


/* Klik */

.fh-account-page a.fh-account-secondary-button:active {
    background: #4f27c8 !important;
    color: #ffffff !important;
    transform: translateY(0);
}