/* =========================================================
   MRASHITEY BOOKINGS
   Version: 0.1.0
   Brand: Lemon green, black and warm off-white
   ========================================================= */

:root {
    --mab-black: #10130e;
    --mab-black-soft: #1b2118;
    --mab-black-light: #293025;

    --mab-green: #c7f000;
    --mab-green-light: #e8ff92;
    --mab-green-soft: #f0ffc6;
    --mab-green-deep: #87ad00;

    --mab-white: #ffffff;
    --mab-cream: #f4f6ed;
    --mab-cream-dark: #e9ece1;

    --mab-text: #10130e;
    --mab-muted: #687064;
    --mab-border: rgba(16, 19, 14, 0.12);

    --mab-danger: #b42318;
    --mab-success: #607d00;

    --mab-radius-small: 13px;
    --mab-radius-medium: 22px;
    --mab-radius-large: 34px;

    --mab-shadow-small:
        0 12px 30px rgba(16, 19, 14, 0.08);

    --mab-shadow-large:
        0 30px 90px rgba(16, 19, 14, 0.15);
}

/* =========================================================
   GENERAL RESET
   ========================================================= */

.mab-app,
.mab-app *,
.mab-admin-page,
.mab-admin-page * {
    box-sizing: border-box;
}

.mab-app {
    color: var(--mab-text);
    font-family:
        Inter,
        Manrope,
        "Segoe UI",
        Arial,
        sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.mab-app h1,
.mab-app h2,
.mab-app h3,
.mab-app h4,
.mab-app p {
    margin-top: 0;
}

.mab-app a {
    text-decoration: none;
}

.mab-home,
.mab-auth-page,
.mab-message-page,
.mab-dashboard {
    margin-left: calc(50% - 50vw);
    width: 100vw;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.mab-button {
    align-items: center;
    background: var(--mab-green);
    border: 1px solid var(--mab-green);
    border-radius: 999px;
    box-shadow: none;
    color: var(--mab-black);
    display: inline-flex;
    font-size: 15px;
    font-weight: 800;
    gap: 18px;
    justify-content: center;
    min-height: 52px;
    padding: 13px 25px;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}

.mab-button:hover,
.mab-button:focus {
    background: #d8ff25;
    border-color: #d8ff25;
    box-shadow:
        0 15px 35px rgba(123, 158, 0, 0.22);
    color: var(--mab-black);
    transform: translateY(-2px);
}

.mab-button-small {
    font-size: 13px;
    min-height: 42px;
    padding: 9px 19px;
}

.mab-button-large {
    min-height: 60px;
    padding: 16px 29px;
}

/* =========================================================
   HOMEPAGE
   ========================================================= */

.mab-home {
    background: var(--mab-cream);
    overflow: hidden;
}

.mab-hero {
    background:
        radial-gradient(
            circle at 83% 38%,
            rgba(199, 240, 0, 0.22),
            transparent 27%
        ),
        linear-gradient(
            135deg,
            #fafbf6 0%,
            #edf0e6 100%
        );
    min-height: 810px;
    padding:
        24px
        clamp(20px, 5vw, 80px)
        85px;
    position: relative;
}

/* Navigation */

.mab-navigation {
    align-items: center;
    border-bottom: 1px solid var(--mab-border);
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1380px;
    padding-bottom: 22px;
}

.mab-brand {
    align-items: center;
    color: var(--mab-black);
    display: inline-flex;
    font-size: 18px;
    font-weight: 750;
    gap: 12px;
    letter-spacing: -0.025em;
}

.mab-brand strong {
    color: var(--mab-green-deep);
}

.mab-brand-icon {
    background: var(--mab-black);
    border-radius: 50%;
    display: inline-block;
    height: 41px;
    overflow: hidden;
    position: relative;
    transform: rotate(-9deg);
    width: 41px;
}

.mab-brand-icon i:first-child {
    background: var(--mab-green);
    border-radius:
        14px
        14px
        4px
        14px;
    height: 17px;
    left: 7px;
    position: absolute;
    top: 7px;
    width: 17px;
}

.mab-brand-icon i:last-child {
    background: var(--mab-white);
    border-radius:
        4px
        14px
        14px
        14px;
    bottom: 7px;
    height: 13px;
    position: absolute;
    right: 7px;
    width: 13px;
}

.mab-navigation-buttons {
    align-items: center;
    display: flex;
    gap: 20px;
}

.mab-login-link,
.mab-view-features {
    color: var(--mab-black);
    font-size: 14px;
    font-weight: 750;
}

.mab-login-link:hover,
.mab-view-features:hover {
    color: var(--mab-green-deep);
}

/* Hero content */

.mab-hero-content {
    align-items: center;
    display: grid;
    gap: clamp(55px, 7vw, 110px);
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(480px, 1.08fr);
    margin: 0 auto;
    max-width: 1380px;
    padding-top: clamp(75px, 8vw, 130px);
}

.mab-hero-copy {
    max-width: 660px;
}

.mab-eyebrow {
    align-items: center;
    color: #5c6757;
    display: flex;
    font-size: 11px;
    font-weight: 850;
    gap: 11px;
    letter-spacing: 0.13em;
    margin-bottom: 26px;
    text-transform: uppercase;
}

.mab-eyebrow > span {
    background: var(--mab-green-deep);
    border-radius: 50%;
    box-shadow:
        0 0 0 6px
        rgba(199, 240, 0, 0.25);
    height: 8px;
    width: 8px;
}

.mab-hero-copy h1 {
    color: var(--mab-black);
    font-size: clamp(52px, 5.7vw, 88px);
    font-weight: 850;
    letter-spacing: -0.065em;
    line-height: 0.95;
    margin-bottom: 31px;
}

.mab-hero-copy h1 em {
    color: var(--mab-green-deep);
    display: block;
    font-family:
        Georgia,
        "Times New Roman",
        serif;
    font-weight: 500;
    letter-spacing: -0.045em;
}

.mab-hero-copy > p {
    color: var(--mab-muted);
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 0;
    max-width: 595px;
}

.mab-hero-buttons {
    align-items: center;
    display: flex;
    gap: 21px;
    margin-top: 38px;
}

.mab-hero-note {
    align-items: center;
    border-top: 1px solid var(--mab-border);
    display: flex;
    gap: 15px;
    margin-top: 48px;
    padding-top: 25px;
}

.mab-hero-note > span {
    align-items: center;
    background: var(--mab-black);
    border-radius: 50%;
    color: var(--mab-green);
    display: flex;
    flex: 0 0 39px;
    font-size: 14px;
    font-weight: 900;
    height: 39px;
    justify-content: center;
}

.mab-hero-note p {
    color: var(--mab-muted);
    font-size: 12px;
    line-height: 1.45;
    margin: 0;
}

.mab-hero-note strong {
    color: var(--mab-black);
    display: block;
    font-size: 13px;
}

/* =========================================================
   DASHBOARD PREVIEW ON HOMEPAGE
   ========================================================= */

.mab-preview-area {
    min-height: 545px;
    position: relative;
}

.mab-preview-circle {
    border:
        1px solid
        rgba(93, 111, 72, 0.18);
    border-radius: 50%;
    height: 570px;
    position: absolute;
    right: -55px;
    top: -35px;
    width: 570px;
}

.mab-preview-circle::after {
    border:
        1px solid
        rgba(93, 111, 72, 0.17);
    border-radius: 50%;
    content: "";
    height: 420px;
    left: 75px;
    position: absolute;
    top: 75px;
    width: 420px;
}

.mab-schedule-preview {
    background:
        rgba(255, 255, 255, 0.94);
    border:
        1px solid
        rgba(255, 255, 255, 0.9);
    border-radius: var(--mab-radius-large);
    box-shadow: var(--mab-shadow-large);
    left: 50%;
    max-width: 535px;
    padding: 31px;
    position: absolute;
    top: 50%;
    transform:
        translate(-50%, -50%)
        rotate(1.4deg);
    width: 88%;
    z-index: 2;
}

.mab-schedule-preview > header {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.mab-schedule-preview > header div > span {
    color: var(--mab-muted);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mab-schedule-preview h2 {
    font-size: 28px;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin: 3px 0 0;
}

.mab-live-badge {
    align-items: center;
    background: var(--mab-green-soft);
    border-radius: 999px;
    color: #4f6500;
    display: inline-flex;
    font-size: 10px;
    font-weight: 850;
    gap: 7px;
    padding: 8px 12px;
    text-transform: uppercase;
}

.mab-live-badge i {
    background: var(--mab-green-deep);
    border-radius: 50%;
    height: 6px;
    width: 6px;
}

.mab-calendar-row {
    display: grid;
    gap: 7px;
    grid-template-columns: repeat(5, 1fr);
    margin: 28px 0;
}

.mab-calendar-row > span {
    align-items: center;
    border: 1px solid var(--mab-border);
    border-radius: 13px;
    display: flex;
    flex-direction: column;
    font-size: 15px;
    font-weight: 850;
    padding: 10px 5px;
}

.mab-calendar-row small {
    color: var(--mab-muted);
    font-size: 8px;
    letter-spacing: 0.08em;
}

.mab-calendar-row .active {
    background: var(--mab-green);
    border-color: var(--mab-green);
}

.mab-calendar-row .active small {
    color: var(--mab-black);
}

.mab-preview-booking {
    align-items: center;
    background: #f1f3eb;
    border-left:
        4px solid
        var(--mab-green-deep);
    border-radius: 14px;
    display: grid;
    gap: 14px;
    grid-template-columns:
        auto
        minmax(0, 1fr)
        auto;
    margin-bottom: 12px;
    padding: 15px;
}

.mab-preview-booking time {
    font-size: 12px;
    font-weight: 850;
}

.mab-preview-booking strong,
.mab-preview-booking small {
    display: block;
}

.mab-preview-booking strong {
    font-size: 13px;
}

.mab-preview-booking small {
    color: var(--mab-muted);
    font-size: 10px;
}

.mab-preview-booking > span {
    background: var(--mab-white);
    border-radius: 999px;
    color: #607900;
    font-size: 9px;
    font-weight: 850;
    padding: 6px 9px;
}

.mab-preview-booking-dark {
    background: var(--mab-black);
    border-color: var(--mab-green);
    color: var(--mab-white);
}

.mab-preview-booking-dark small {
    color: #aeb6aa;
}

.mab-preview-booking-dark > span {
    background: var(--mab-green);
    color: var(--mab-black);
}

.mab-schedule-preview > footer {
    border-top: 1px solid var(--mab-border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 24px;
    padding-top: 20px;
}

.mab-schedule-preview footer div {
    color: var(--mab-muted);
    font-size: 9px;
}

.mab-schedule-preview footer strong,
.mab-schedule-preview footer span {
    display: block;
}

.mab-schedule-preview footer strong {
    color: var(--mab-black);
    font-size: 14px;
}

.mab-floating-card {
    align-items: center;
    background:
        rgba(16, 19, 14, 0.95);
    border-radius: 16px;
    bottom: 25px;
    box-shadow:
        0 20px 45px
        rgba(16, 19, 14, 0.2);
    color: var(--mab-white);
    display: flex;
    gap: 11px;
    left: -5px;
    padding: 13px 17px;
    position: absolute;
    z-index: 3;
}

.mab-floating-card > span {
    align-items: center;
    background: var(--mab-green);
    border-radius: 10px;
    color: var(--mab-black);
    display: flex;
    font-weight: 900;
    height: 32px;
    justify-content: center;
    width: 32px;
}

.mab-floating-card strong,
.mab-floating-card small {
    display: block;
}

.mab-floating-card strong {
    font-size: 11px;
}

.mab-floating-card small {
    color: #aeb6aa;
    font-size: 9px;
}

/* =========================================================
   FEATURES
   ========================================================= */

.mab-features-section {
    margin: 0 auto;
    max-width: 1380px;
    padding:
        110px
        clamp(20px, 5vw, 80px);
}

.mab-section-heading {
    align-items: flex-start;
    display: grid;
    gap: 34px;
    grid-template-columns: auto 1fr;
    margin-bottom: 56px;
}

.mab-section-heading > span {
    align-items: center;
    background: var(--mab-green);
    border-radius: 50%;
    display: flex;
    font-size: 12px;
    font-weight: 900;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.mab-section-heading p {
    color: var(--mab-muted);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.mab-section-heading h2 {
    font-size: clamp(36px, 4vw, 58px);
    letter-spacing: -0.055em;
    line-height: 1.05;
    margin-bottom: 0;
    max-width: 840px;
}

.mab-feature-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
}

.mab-feature-card {
    background: var(--mab-white);
    border: 1px solid var(--mab-border);
    border-radius: var(--mab-radius-medium);
    min-height: 315px;
    padding: 32px;
}

.mab-dark-card {
    background: var(--mab-black);
    color: var(--mab-white);
}

.mab-feature-icon {
    align-items: center;
    background: var(--mab-green);
    border-radius: 14px;
    color: var(--mab-black);
    display: flex;
    font-size: 15px;
    font-weight: 900;
    height: 50px;
    justify-content: center;
    margin-bottom: 72px;
    width: 50px;
}

.mab-feature-card h3 {
    font-size: 22px;
    letter-spacing: -0.035em;
    margin-bottom: 12px;
}

.mab-feature-card p {
    color: var(--mab-muted);
    font-size: 14px;
    margin-bottom: 0;
}

.mab-dark-card p {
    color: #b8c0b4;
}

/* =========================================================
   PRICING BANNER
   ========================================================= */

.mab-pricing-banner {
    align-items: center;
    background: var(--mab-black);
    border-radius:
        var(--mab-radius-large)
        var(--mab-radius-large)
        0
        0;
    color: var(--mab-white);
    display: grid;
    gap: 42px;
    grid-template-columns:
        1.4fr
        1fr
        auto;
    margin: 0 auto;
    max-width: 1380px;
    padding:
        58px
        clamp(28px, 5vw, 70px);
}

.mab-pricing-banner > div > span {
    color: var(--mab-green);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mab-pricing-banner h2 {
    color: var(--mab-white);
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: -0.045em;
    line-height: 1.1;
    margin: 8px 0 0;
}

.mab-pricing-banner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mab-pricing-banner li {
    color: #c3c9c0;
    font-size: 13px;
    margin: 8px 0;
}

.mab-pricing-banner li::before {
    color: var(--mab-green);
    content: "✓";
    font-weight: 900;
    margin-right: 9px;
}

.mab-pricing-banner .mab-button {
    white-space: nowrap;
}

/* =========================================================
   LOGIN PAGE
   ========================================================= */

.mab-auth-page,
.mab-message-page {
    align-items: center;
    background:
        radial-gradient(
            circle at 83% 12%,
            rgba(199, 240, 0, 0.22),
            transparent 25%
        ),
        var(--mab-cream);
    display: flex;
    justify-content: center;
    min-height: 82vh;
    padding: 50px 20px;
}

.mab-auth-card {
    background: var(--mab-white);
    border: 1px solid var(--mab-border);
    border-radius: var(--mab-radius-large);
    box-shadow: var(--mab-shadow-large);
    display: grid;
    grid-template-columns:
        0.92fr
        1.08fr;
    max-width: 930px;
    overflow: hidden;
    width: 100%;
}

.mab-auth-introduction {
    background: var(--mab-black);
    color: var(--mab-white);
    min-height: 520px;
    padding: 58px;
}

.mab-auth-logo,
.mab-message-logo {
    align-items: center;
    background: var(--mab-green);
    border-radius: 14px;
    color: var(--mab-black);
    display: inline-flex;
    font-size: 20px;
    font-weight: 950;
    height: 47px;
    justify-content: center;
    margin-bottom: 78px;
    transform: rotate(-7deg);
    width: 47px;
}

.mab-auth-introduction p {
    color: var(--mab-green);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.14em;
    margin-bottom: 13px;
    text-transform: uppercase;
}

.mab-auth-introduction h1 {
    color: var(--mab-white);
    font-size: 45px;
    letter-spacing: -0.055em;
    line-height: 1;
    margin-bottom: 23px;
}

.mab-auth-introduction > span {
    color: #b7c0b3;
    display: block;
    font-size: 15px;
    max-width: 310px;
}

.mab-login-form {
    align-self: center;
    padding: 58px;
}

.mab-login-form form {
    margin: 0;
}

.mab-login-form p {
    margin-bottom: 19px;
}

.mab-login-form label {
    color: var(--mab-black);
    display: block;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 7px;
}

.mab-login-form .input {
    background: #f5f7f1;
    border: 1px solid var(--mab-border);
    border-radius: 13px;
    box-shadow: none;
    color: var(--mab-black);
    font-size: 15px;
    min-height: 51px;
    padding: 11px 14px;
    width: 100%;
}

.mab-login-form .input:focus {
    border-color: var(--mab-green-deep);
    box-shadow:
        0 0 0 4px
        rgba(199, 240, 0, 0.2);
    outline: none;
}

.mab-login-form .forgetmenot {
    align-items: center;
    display: flex;
    gap: 7px;
    margin-bottom: 22px;
}

.mab-login-form .forgetmenot label {
    margin: 0;
}

.mab-login-form #rememberme {
    accent-color: var(--mab-green-deep);
}

.mab-login-form #wp-submit {
    background: var(--mab-green);
    border: 0;
    border-radius: 999px;
    color: var(--mab-black);
    cursor: pointer;
    font-size: 14px;
    font-weight: 850;
    min-height: 53px;
    transition:
        transform 180ms ease,
        background 180ms ease;
    width: 100%;
}

.mab-login-form #wp-submit:hover {
    background: #d8ff25;
    transform: translateY(-2px);
}

.mab-forgot-password {
    color: var(--mab-muted);
    display: block;
    font-size: 12px;
    margin-top: 19px;
    text-align: center;
}

.mab-forgot-password:hover {
    color: var(--mab-green-deep);
}

/* =========================================================
   GENERAL MESSAGE PAGE
   ========================================================= */

.mab-message-card {
    background: var(--mab-black);
    border-radius: var(--mab-radius-large);
    box-shadow: var(--mab-shadow-large);
    color: var(--mab-white);
    max-width: 690px;
    padding: clamp(40px, 6vw, 72px);
    text-align: center;
    width: 100%;
}

.mab-message-logo {
    margin-bottom: 32px;
}

.mab-message-card > p {
    color: var(--mab-green);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.14em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.mab-message-card h1 {
    color: var(--mab-white);
    font-size: clamp(35px, 5vw, 49px);
    letter-spacing: -0.055em;
    line-height: 1.04;
    margin-bottom: 21px;
}

.mab-message-card > span {
    color: #b8c0b4;
    display: block;
    margin: 0 auto 31px;
    max-width: 520px;
}

.mab-message-card .mab-button i {
    font-style: normal;
}

/* =========================================================
   BUSINESS DASHBOARD
   ========================================================= */

.mab-dashboard {
    background: #eef0e9;
    display: grid;
    grid-template-columns:
        265px
        minmax(0, 1fr);
    min-height: 85vh;
}

.mab-dashboard-sidebar {
    background: var(--mab-black);
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    padding: 32px 24px;
}

.mab-dashboard-brand {
    align-items: center;
    color: var(--mab-white);
    display: flex;
    font-size: 14px;
    gap: 11px;
}

.mab-dashboard-brand > span {
    align-items: center;
    background: var(--mab-green);
    border-radius: 12px;
    color: var(--mab-black);
    display: flex;
    font-size: 16px;
    font-weight: 950;
    height: 40px;
    justify-content: center;
    transform: rotate(-6deg);
    width: 40px;
}

.mab-dashboard-brand strong {
    color: var(--mab-white);
}

.mab-dashboard-sidebar nav {
    display: grid;
    gap: 8px;
    margin-top: 72px;
}

.mab-dashboard-sidebar nav a,
.mab-dashboard-logout {
    align-items: center;
    border-radius: 12px;
    color: #aeb6aa;
    display: flex;
    font-size: 13px;
    font-weight: 700;
    gap: 12px;
    padding: 11px 13px;
    transition:
        background 180ms ease,
        color 180ms ease;
}

.mab-dashboard-sidebar nav a > span {
    align-items: center;
    display: flex;
    font-size: 15px;
    justify-content: center;
    width: 20px;
}

.mab-dashboard-sidebar nav a:hover,
.mab-dashboard-sidebar nav a.active {
    background: var(--mab-green);
    color: var(--mab-black);
}

.mab-dashboard-logout {
    margin-top: auto;
}

.mab-dashboard-logout:hover {
    color: var(--mab-white);
}

.mab-dashboard-main {
    padding: clamp(30px, 5vw, 65px);
}

.mab-dashboard-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.mab-dashboard-header p {
    color: var(--mab-muted);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.14em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.mab-dashboard-header h1 {
    font-size: clamp(30px, 4vw, 45px);
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 0;
}

.mab-plan-badge,
.mab-version-badge {
    background: var(--mab-green-soft);
    border-radius: 999px;
    color: #526900;
    display: inline-flex;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.06em;
    padding: 9px 13px;
    text-transform: uppercase;
}

.mab-dashboard-statistics,
.mab-admin-statistics {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
    margin: 39px 0 20px;
}

.mab-dashboard-statistics article,
.mab-admin-statistics article {
    background: var(--mab-white);
    border: 1px solid var(--mab-border);
    border-radius: var(--mab-radius-medium);
    min-height: 165px;
    padding: 26px;
}

.mab-dashboard-statistics article > span,
.mab-dashboard-statistics article > small,
.mab-admin-statistics article > span,
.mab-admin-statistics article > small {
    color: var(--mab-muted);
    display: block;
    font-size: 11px;
    font-weight: 700;
}

.mab-dashboard-statistics article > strong,
.mab-admin-statistics article > strong {
    color: var(--mab-black);
    display: block;
    font-size: 33px;
    letter-spacing: -0.045em;
    margin-top: 17px;
}

.mab-dashboard-statistics .mab-stat-highlight,
.mab-admin-statistics .mab-stat-highlight {
    background: var(--mab-green);
    border-color: var(--mab-green);
}

.mab-dashboard-welcome {
    align-items: center;
    background: var(--mab-white);
    border: 1px solid var(--mab-border);
    border-radius: var(--mab-radius-medium);
    display: flex;
    gap: 35px;
    justify-content: space-between;
    margin-top: 16px;
    padding: 36px;
}

.mab-dashboard-welcome > div:first-child > span {
    color: var(--mab-green-deep);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mab-dashboard-welcome h2 {
    font-size: 27px;
    letter-spacing: -0.04em;
    margin: 8px 0 10px;
}

.mab-dashboard-welcome p {
    color: var(--mab-muted);
    font-size: 14px;
    margin-bottom: 0;
    max-width: 680px;
}

.mab-progress-circle {
    align-items: center;
    aspect-ratio: 1;
    background:
        conic-gradient(
            var(--mab-green) 0 20%,
            #e7e9e1 20% 100%
        );
    border-radius: 50%;
    display: flex;
    flex: 0 0 110px;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.mab-progress-circle::after {
    background: var(--mab-white);
    border-radius: 50%;
    content: "";
    inset: 9px;
    position: absolute;
}

.mab-progress-circle strong,
.mab-progress-circle span {
    position: relative;
    z-index: 1;
}

.mab-progress-circle strong {
    font-size: 18px;
}

.mab-progress-circle span {
    color: var(--mab-muted);
    font-size: 9px;
    text-transform: uppercase;
}

/* =========================================================
   WORDPRESS ADMIN DASHBOARD
   ========================================================= */

.mab-admin-page {
    margin-right: 20px;
    padding-top: 20px;
}

.mab-admin-page > .mab-app {
    background: #eef0e9;
    border-radius: 24px;
    min-height: 78vh;
    padding: clamp(26px, 4vw, 55px);
}

.mab-admin-header {
    align-items: center;
    background: var(--mab-black);
    border-radius: var(--mab-radius-medium);
    color: var(--mab-white);
    display: flex;
    justify-content: space-between;
    padding: 37px;
}

.mab-admin-header > div > span {
    color: var(--mab-green);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mab-admin-header h1 {
    color: var(--mab-white);
    font-size: 39px;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin: 8px 0;
}

.mab-admin-header p {
    color: #aeb6aa;
    margin-bottom: 0;
}

.mab-admin-columns {
    display: grid;
    gap: 17px;
    grid-template-columns:
        1.2fr
        0.8fr;
}

.mab-admin-card {
    background: var(--mab-white);
    border: 1px solid var(--mab-border);
    border-radius: var(--mab-radius-medium);
    padding: 35px;
}

.mab-card-label {
    color: var(--mab-green-deep);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mab-admin-card h2 {
    font-size: 25px;
    letter-spacing: -0.04em;
    margin: 8px 0 23px;
}

.mab-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mab-checklist li {
    color: var(--mab-muted);
    margin: 11px 0;
}

.mab-checklist li::before {
    border: 1px solid var(--mab-border);
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 18px;
    margin-right: 10px;
    vertical-align: -4px;
    width: 18px;
}

.mab-checklist li.complete::before {
    background: var(--mab-green);
    border-color: var(--mab-green-deep);
    box-shadow:
        inset 0 0 0 4px
        var(--mab-white);
}

.mab-admin-links {
    display: grid;
}

.mab-admin-links a {
    border-bottom: 1px solid var(--mab-border);
    color: var(--mab-black);
    font-size: 13px;
    font-weight: 800;
    padding: 14px 0;
}

.mab-admin-links a:hover {
    color: var(--mab-green-deep);
}

/* =========================================================
   TABLET RESPONSIVENESS
   ========================================================= */

@media (max-width: 1050px) {
    .mab-hero-content {
        grid-template-columns: 1fr;
    }

    .mab-hero-copy {
        max-width: 780px;
    }

    .mab-preview-area {
        margin: 15px auto 0;
        max-width: 720px;
        width: 100%;
    }

    .mab-pricing-banner {
        grid-template-columns: 1fr 1fr;
    }

    .mab-pricing-banner .mab-button {
        justify-self: start;
    }

    .mab-dashboard {
        grid-template-columns:
            88px
            minmax(0, 1fr);
    }

    .mab-dashboard-sidebar {
        align-items: center;
        padding-left: 12px;
        padding-right: 12px;
    }

    .mab-dashboard-brand strong {
        display: none;
    }

    .mab-dashboard-sidebar nav a {
        font-size: 0;
        justify-content: center;
    }

    .mab-dashboard-sidebar nav a > span {
        font-size: 16px;
    }

    .mab-dashboard-logout {
        font-size: 0;
    }
}

/* =========================================================
   MOBILE RESPONSIVENESS
   ========================================================= */

@media (max-width: 780px) {
    .mab-navigation-buttons .mab-login-link {
        display: none;
    }

    .mab-hero {
        min-height: 0;
        padding-bottom: 48px;
    }

    .mab-hero-content {
        padding-top: 62px;
    }

    .mab-hero-copy h1 {
        font-size: clamp(47px, 15vw, 70px);
    }

    .mab-hero-buttons {
        align-items: flex-start;
        flex-direction: column;
    }

    .mab-hero-note {
        align-items: flex-start;
    }

    .mab-preview-area {
        min-height: 490px;
    }

    .mab-preview-circle {
        height: 475px;
        right: -90px;
        width: 475px;
    }

    .mab-preview-circle::after {
        height: 350px;
        left: 62px;
        top: 62px;
        width: 350px;
    }

    .mab-schedule-preview {
        padding: 21px;
        width: 96%;
    }

    .mab-floating-card {
        bottom: 0;
        left: 0;
    }

    .mab-features-section {
        padding-bottom: 75px;
        padding-top: 75px;
    }

    .mab-section-heading {
        grid-template-columns: 1fr;
    }

    .mab-feature-grid,
    .mab-pricing-banner,
    .mab-auth-card,
    .mab-dashboard-statistics,
    .mab-admin-statistics,
    .mab-admin-columns {
        grid-template-columns: 1fr;
    }

    .mab-pricing-banner {
        border-radius: 28px 28px 0 0;
        margin-left: 12px;
        margin-right: 12px;
    }

    .mab-auth-introduction {
        min-height: auto;
        padding: 39px;
    }

    .mab-auth-logo {
        margin-bottom: 42px;
    }

    .mab-login-form {
        padding: 39px;
    }

    .mab-dashboard {
        display: block;
    }

    .mab-dashboard-sidebar {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        min-height: auto;
        padding: 16px 20px;
    }

    .mab-dashboard-brand strong {
        display: block;
    }

    .mab-dashboard-sidebar nav {
        display: none;
    }

    .mab-dashboard-logout {
        font-size: 12px;
        margin-top: 0;
    }

    .mab-dashboard-main {
        padding: 27px 18px 48px;
    }

    .mab-dashboard-header,
    .mab-admin-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 19px;
    }

    .mab-dashboard-welcome {
        align-items: flex-start;
        flex-direction: column;
    }

    .mab-admin-page {
        margin-right: 10px;
    }
}

/* =========================================================
   SMALL MOBILE DEVICES
   ========================================================= */

@media (max-width: 480px) {
    .mab-brand {
        font-size: 15px;
    }

    .mab-brand-icon {
        height: 36px;
        width: 36px;
    }

    .mab-button-small {
        font-size: 12px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .mab-calendar-row {
        gap: 4px;
    }

    .mab-calendar-row > span {
        border-radius: 10px;
        font-size: 12px;
        padding-left: 2px;
        padding-right: 2px;
    }

    .mab-preview-booking {
        grid-template-columns:
            auto
            minmax(0, 1fr);
    }

    .mab-preview-booking > span {
        display: none;
    }

    .mab-schedule-preview footer strong {
        font-size: 11px;
    }

    .mab-floating-card {
        transform: scale(0.9);
        transform-origin: left bottom;
    }

    .mab-auth-introduction,
    .mab-login-form {
        padding: 31px 25px;
    }

    .mab-auth-introduction h1 {
        font-size: 38px;
    }

    .mab-message-card {
        padding-left: 25px;
        padding-right: 25px;
    }

    .mab-dashboard-brand strong {
        font-size: 12px;
    }

    .mab-admin-header {
        padding: 28px;
    }

    .mab-admin-header h1 {
        font-size: 32px;
    }

    .mab-admin-card {
        padding: 27px;
    }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .mab-app *,
    .mab-app *::before,
    .mab-app *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}


/* =========================================================
   STANDALONE PLATFORM TEMPLATE
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body.mab-platform-body {
    background: var(--mab-cream);
    margin: 0;
    overflow-x: hidden;
    padding: 0;
    width: 100%;
}

body.mab-platform-body .mab-platform-page {
    margin: 0;
    min-height: 100vh;
    padding: 0;
    width: 100%;
}

body.mab-platform-body .mab-home,
body.mab-platform-body .mab-auth-page,
body.mab-platform-body .mab-message-page,
body.mab-platform-body .mab-dashboard {
    margin: 0;
    max-width: none;
    width: 100%;
}

body.mab-platform-body .mab-platform-page > p:empty {
    display: none;
}

body.mab-platform-body img {
    height: auto;
    max-width: 100%;
}



/* =========================================================
   BUSINESS REGISTRATION
   ========================================================= */

.mab-registration-page {
    align-items: center;
    background:
        radial-gradient(
            circle at 10% 85%,
            rgba(199, 240, 0, 0.16),
            transparent 27%
        ),
        var(--mab-cream);
    display: flex;
    justify-content: center;
    margin: 0;
    min-height: 100vh;
    padding: clamp(20px, 4vw, 56px);
    width: 100%;
}

.mab-registration-shell {
    background: var(--mab-white);
    border: 1px solid var(--mab-border);
    border-radius: var(--mab-radius-large);
    box-shadow: var(--mab-shadow-large);
    display: grid;
    grid-template-columns:
        minmax(340px, 0.82fr)
        minmax(520px, 1.18fr);
    max-width: 1180px;
    min-height: 720px;
    overflow: hidden;
    width: 100%;
}

/* Registration introduction */

.mab-registration-intro {
    background:
        radial-gradient(
            circle at 25% 88%,
            rgba(199, 240, 0, 0.15),
            transparent 29%
        ),
        var(--mab-black);
    color: var(--mab-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(38px, 5vw, 62px);
    position: relative;
}

.mab-registration-intro::after {
    border:
        1px solid
        rgba(199, 240, 0, 0.16);
    border-radius: 50%;
    bottom: -135px;
    content: "";
    height: 350px;
    position: absolute;
    right: -150px;
    width: 350px;
}

.mab-registration-brand {
    align-items: center;
    color: var(--mab-white);
    display: inline-flex;
    font-size: 14px;
    gap: 12px;
    position: relative;
    width: fit-content;
    z-index: 1;
}

.mab-registration-brand:hover {
    color: var(--mab-white);
}

.mab-registration-brand > span {
    align-items: center;
    background: var(--mab-green);
    border-radius: 12px;
    color: var(--mab-black);
    display: inline-flex;
    font-size: 17px;
    font-weight: 950;
    height: 42px;
    justify-content: center;
    transform: rotate(-7deg);
    width: 42px;
}

.mab-registration-brand strong {
    color: var(--mab-white);
}

.mab-registration-intro > div {
    margin: 75px 0 55px;
    position: relative;
    z-index: 1;
}

.mab-registration-intro > div > p {
    color: var(--mab-green);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.mab-registration-intro h1 {
    color: var(--mab-white);
    font-size: clamp(42px, 4.5vw, 61px);
    letter-spacing: -0.06em;
    line-height: 0.98;
    margin-bottom: 27px;
}

.mab-registration-intro > div > span {
    color: #b8c0b4;
    display: block;
    font-size: 15px;
    line-height: 1.7;
    max-width: 390px;
}

.mab-registration-intro ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.mab-registration-intro li {
    align-items: center;
    color: #d6dbd2;
    display: flex;
    font-size: 13px;
    gap: 11px;
    margin: 12px 0;
}

.mab-registration-intro li::before {
    align-items: center;
    background: var(--mab-green);
    border-radius: 50%;
    color: var(--mab-black);
    content: "✓";
    display: inline-flex;
    flex: 0 0 21px;
    font-size: 10px;
    font-weight: 950;
    height: 21px;
    justify-content: center;
}

/* Form panel */

.mab-registration-form-panel {
    align-self: center;
    padding: clamp(35px, 5vw, 68px);
}

.mab-registration-heading {
    margin-bottom: 31px;
}

.mab-registration-heading > span {
    background: var(--mab-green-soft);
    border-radius: 999px;
    color: #536b00;
    display: inline-flex;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 13px;
    padding: 7px 11px;
    text-transform: uppercase;
}

.mab-registration-heading h2 {
    font-size: clamp(31px, 3.5vw, 43px);
    letter-spacing: -0.055em;
    line-height: 1.05;
    margin-bottom: 9px;
}

.mab-registration-heading p {
    color: var(--mab-muted);
    font-size: 12px;
    margin-bottom: 0;
}

.mab-registration-heading a {
    color: var(--mab-green-deep);
    font-weight: 800;
}

.mab-registration-heading a:hover {
    text-decoration: underline;
}

/* Validation errors */

.mab-form-errors {
    background: #fff1f0;
    border: 1px solid #f1b8b3;
    border-left: 4px solid var(--mab-danger);
    border-radius: 13px;
    color: #7a271a;
    font-size: 12px;
    margin-bottom: 25px;
    padding: 15px 17px;
}

.mab-form-errors strong {
    display: block;
    margin-bottom: 7px;
}

.mab-form-errors ul {
    margin: 0;
    padding-left: 19px;
}

.mab-form-errors li {
    margin: 3px 0;
}

/* Form fields */

.mab-registration-form {
    margin: 0;
}

.mab-form-grid {
    display: grid;
    gap: 17px;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    margin-bottom: 18px;
}

.mab-field {
    min-width: 0;
}

.mab-field label {
    color: var(--mab-black);
    display: block;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 7px;
}

.mab-field input {
    appearance: none;
    background: #f7f8f3;
    border: 1px solid var(--mab-border);
    border-radius: 12px;
    box-shadow: none;
    color: var(--mab-black);
    font-family: inherit;
    font-size: 14px;
    height: 50px;
    line-height: normal;
    margin: 0;
    outline: none;
    padding: 10px 13px;
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease,
        background 160ms ease;
    width: 100%;
}

.mab-field input:hover {
    background: var(--mab-white);
    border-color: rgba(16, 19, 14, 0.24);
}

.mab-field input:focus {
    background: var(--mab-white);
    border-color: var(--mab-green-deep);
    box-shadow:
        0 0 0 4px
        rgba(199, 240, 0, 0.22);
}

.mab-field input::placeholder {
    color: #9ba297;
}

.mab-field small {
    color: var(--mab-muted);
    display: block;
    font-size: 9px;
    line-height: 1.45;
    margin-top: 6px;
}

/* Hidden anti-bot field */

.mab-honeypot {
    height: 1px !important;
    left: -10000px !important;
    overflow: hidden !important;
    position: absolute !important;
    top: auto !important;
    width: 1px !important;
}

/* Password visibility */

.mab-password-control {
    position: relative;
}

.mab-password-control input {
    padding-right: 64px;
}

.mab-password-toggle {
    background: transparent;
    border: 0;
    border-radius: 8px;
    color: var(--mab-green-deep);
    cursor: pointer;
    font-family: inherit;
    font-size: 10px;
    font-weight: 850;
    padding: 7px 8px;
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
}

.mab-password-toggle:hover,
.mab-password-toggle:focus {
    background: var(--mab-green-soft);
    color: #4b6200;
    outline: none;
}

/* Password strength checks */

.mab-password-strength {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 8px;
}

.mab-password-strength span {
    align-items: center;
    background: #f0f1ec;
    border-radius: 999px;
    color: #7c8379;
    display: inline-flex;
    font-size: 8px;
    font-weight: 800;
    gap: 4px;
    padding: 4px 7px;
}

.mab-password-strength span::before {
    content: "○";
    font-size: 8px;
}

.mab-password-strength span.is-valid {
    background: var(--mab-green-soft);
    color: #526900;
}

.mab-password-strength span.is-valid::before {
    content: "✓";
}

.mab-field input.mab-input-mismatch {
    border-color: #d92d20;
    box-shadow:
        0 0 0 3px
        rgba(217, 45, 32, 0.1);
}

.mab-field input.mab-input-match {
    border-color: var(--mab-green-deep);
}

/* Terms */

.mab-terms-field {
    align-items: flex-start;
    color: var(--mab-muted);
    cursor: pointer;
    display: flex;
    font-size: 10px;
    gap: 10px;
    line-height: 1.5;
    margin: 8px 0 23px;
}

.mab-terms-field input {
    accent-color: var(--mab-green-deep);
    flex: 0 0 auto;
    height: 16px;
    margin: 1px 0 0;
    width: 16px;
}

/* Submission */

.mab-registration-submit {
    border: 0;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
}

.mab-registration-submit:disabled {
    cursor: wait;
    opacity: 0.78;
    transform: none;
}

.mab-registration-submit.is-loading {
    gap: 10px;
}

.mab-button-spinner {
    animation:
        mab-spin
        700ms
        linear
        infinite;
    border:
        2px solid
        rgba(16, 19, 14, 0.25);
    border-radius: 50%;
    border-top-color: var(--mab-black);
    height: 16px;
    width: 16px;
}

@keyframes mab-spin {
    to {
        transform: rotate(360deg);
    }
}

.mab-security-note {
    align-items: center;
    color: var(--mab-muted);
    display: flex;
    font-size: 9px;
    gap: 6px;
    justify-content: center;
    margin: 13px 0 0;
    text-align: center;
}

.mab-security-note > span {
    align-items: center;
    background: var(--mab-green-soft);
    border-radius: 50%;
    color: #526900;
    display: inline-flex;
    flex: 0 0 15px;
    font-size: 8px;
    height: 15px;
    justify-content: center;
}

/* Tablet */

@media (max-width: 940px) {
    .mab-registration-shell {
        grid-template-columns: 1fr;
        max-width: 720px;
    }

    .mab-registration-intro {
        min-height: 430px;
    }

    .mab-registration-intro > div {
        margin: 55px 0 38px;
    }

    .mab-registration-intro h1 {
        max-width: 580px;
    }
}

/* Mobile */

@media (max-width: 620px) {
    .mab-registration-page {
        align-items: stretch;
        padding: 0;
    }

    .mab-registration-shell {
        border: 0;
        border-radius: 0;
        min-height: 100vh;
    }

    .mab-registration-intro {
        min-height: 390px;
        padding: 32px 24px;
    }

    .mab-registration-intro > div {
        margin: 48px 0 32px;
    }

    .mab-registration-intro h1 {
        font-size:
            clamp(39px, 12vw, 52px);
    }

    .mab-registration-form-panel {
        padding: 42px 24px 50px;
    }

    .mab-form-grid {
        grid-template-columns: 1fr;
        margin-bottom: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mab-button-spinner {
        animation-duration: 1400ms;
    }
}

/* =========================================================
   LIVE BUSINESS OWNER DASHBOARD
   ========================================================= */

/* Sidebar business profile */

.mab-dashboard-business {
    align-items: center;
    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.09);
    border-top:
        1px solid
        rgba(255, 255, 255, 0.09);
    display: flex;
    gap: 10px;
    margin-top: 35px;
    padding: 20px 4px;
}

.mab-dashboard-business > span {
    align-items: center;
    background: var(--mab-green);
    border-radius: 11px;
    color: var(--mab-black);
    display: flex;
    flex: 0 0 38px;
    font-size: 15px;
    font-weight: 900;
    height: 38px;
    justify-content: center;
}

.mab-dashboard-business strong,
.mab-dashboard-business small {
    display: block;
    max-width: 155px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mab-dashboard-business strong {
    color: var(--mab-white);
    font-size: 11px;
}

.mab-dashboard-business small {
    color: #9ba497;
    font-size: 9px;
    text-transform: capitalize;
}

.mab-dashboard-sidebar
.mab-dashboard-business + nav {
    margin-top: 28px;
}

/* Dashboard owner */

.mab-dashboard-owner {
    align-items: center;
    display: flex;
    gap: 14px;
}

.mab-dashboard-owner > a {
    color: var(--mab-black);
    font-size: 11px;
    font-weight: 800;
}

.mab-dashboard-owner > a:hover {
    color: var(--mab-green-deep);
}

.mab-dashboard-owner > span {
    align-items: center;
    background: var(--mab-black);
    border-radius: 50%;
    color: var(--mab-green);
    display: flex;
    font-size: 11px;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    width: 42px;
}

/* Successful registration banner */

.mab-welcome-banner {
    align-items: center;
    background: var(--mab-green-soft);
    border:
        1px solid
        rgba(135, 173, 0, 0.25);
    border-radius: 16px;
    display: flex;
    gap: 14px;
    margin-top: 30px;
    padding: 17px 20px;
}

.mab-welcome-banner > span {
    align-items: center;
    background: var(--mab-green);
    border-radius: 50%;
    color: var(--mab-black);
    display: flex;
    flex: 0 0 36px;
    font-weight: 900;
    height: 36px;
    justify-content: center;
}

.mab-welcome-banner strong {
    display: block;
    font-size: 13px;
}

.mab-welcome-banner p {
    color: var(--mab-muted);
    font-size: 11px;
    margin: 2px 0 0;
}

/* Four statistics */

.mab-dashboard
.mab-dashboard-statistics {
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
}

/* Dashboard content grid */

.mab-dashboard-grid {
    display: grid;
    gap: 16px;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(320px, 0.85fr);
    margin-bottom: 16px;
}

.mab-dashboard-panel {
    background: var(--mab-white);
    border: 1px solid var(--mab-border);
    border-radius: var(--mab-radius-medium);
    padding: 30px;
}

.mab-dashboard-panel > header {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
}

.mab-dashboard-panel
> header
> div
> span {
    color: var(--mab-green-deep);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.mab-dashboard-panel
> header h2 {
    font-size: 23px;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin: 6px 0 0;
}

/* Onboarding progress */

.mab-onboarding-progress {
    align-items: center;
    background:
        conic-gradient(
            var(--mab-green)
            0
            var(--mab-progress),

            #e8eae3
            var(--mab-progress)
            100%
        );
    border-radius: 50%;
    display: flex;
    flex: 0 0 66px;
    height: 66px;
    justify-content: center;
    position: relative;
}

.mab-onboarding-progress::after {
    background: var(--mab-white);
    border-radius: 50%;
    content: "";
    inset: 7px;
    position: absolute;
}

.mab-onboarding-progress strong {
    font-size: 11px;
    position: relative;
    z-index: 1;
}

.mab-onboarding-list {
    list-style: none;
    margin: 27px 0 0;
    padding: 0;
}

.mab-onboarding-list li {
    align-items: center;
    border-top: 1px solid var(--mab-border);
    display: flex;
    gap: 12px;
    padding: 13px 0;
}

.mab-onboarding-list li > span {
    align-items: center;
    border: 1px solid var(--mab-border);
    border-radius: 50%;
    color: var(--mab-black);
    display: flex;
    flex: 0 0 25px;
    font-size: 10px;
    font-weight: 900;
    height: 25px;
    justify-content: center;
}

.mab-onboarding-list
li.complete > span {
    background: var(--mab-green);
    border-color: var(--mab-green);
}

.mab-onboarding-list strong,
.mab-onboarding-list small {
    display: block;
}

.mab-onboarding-list strong {
    font-size: 11px;
}

.mab-onboarding-list small {
    color: var(--mab-muted);
    font-size: 9px;
}

/* Business profile */

.mab-profile-panel
.mab-plan-badge {
    text-transform: capitalize;
}

.mab-profile-list {
    margin: 26px 0 0;
}

.mab-profile-list > div {
    border-top: 1px solid var(--mab-border);
    display: grid;
    gap: 12px;
    grid-template-columns:
        90px
        minmax(0, 1fr);
    padding: 12px 0;
}

.mab-profile-list dt {
    color: var(--mab-muted);
    font-size: 9px;
    font-weight: 700;
}

.mab-profile-list dd {
    color: var(--mab-black);
    font-size: 10px;
    font-weight: 750;
    margin: 0;
    overflow-wrap: anywhere;
}

/* Public booking URL */

.mab-booking-link-box {
    background: var(--mab-cream);
    border-radius: 13px;
    margin-top: 18px;
    padding: 13px;
}

.mab-booking-link-box span,
.mab-booking-link-box a {
    display: block;
}

.mab-booking-link-box span {
    color: var(--mab-muted);
    font-size: 8px;
    font-weight: 750;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.mab-booking-link-box a {
    color: var(--mab-green-deep);
    font-size: 9px;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Upcoming bookings */

.mab-upcoming-panel {
    min-height: 260px;
}

.mab-dashboard-empty {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 170px;
    text-align: center;
}

.mab-dashboard-empty > span {
    align-items: center;
    background: var(--mab-green-soft);
    border-radius: 14px;
    color: var(--mab-green-deep);
    display: flex;
    font-size: 21px;
    height: 48px;
    justify-content: center;
    margin-bottom: 13px;
    width: 48px;
}

.mab-dashboard-empty h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.mab-dashboard-empty p {
    color: var(--mab-muted);
    font-size: 10px;
    margin: 0;
    max-width: 370px;
}

/* Tablet */

@media (max-width: 1180px) {
    .mab-dashboard
    .mab-dashboard-statistics {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .mab-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1050px) {
    .mab-dashboard-business {
        justify-content: center;
        padding-left: 0;
        padding-right: 0;
    }

    .mab-dashboard-business > div {
        display: none;
    }
}

/* Mobile */

@media (max-width: 780px) {
    .mab-dashboard-business {
        display: none;
    }

    .mab-dashboard-owner > a {
        display: none;
    }

    .mab-dashboard
    .mab-dashboard-statistics {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .mab-dashboard
    .mab-dashboard-statistics {
        grid-template-columns: 1fr;
    }

    .mab-dashboard-panel {
        padding: 23px;
    }

    .mab-profile-list > div {
        gap: 3px;
        grid-template-columns: 1fr;
    }
}