/*   ================================================= */
/*   CODEBLUE GLOBAL CSS (ONE FILE) — CONSOLIDATED     */
/*   (single source of truth for layout + no conflicts) */
/*   ================================================= */

/* =================================================
   0) TOKENS (SINGLE ROOT)
   ================================================= */
:root {
    /* ---------- MAIN CONTENT ---------- */
    --NavBar-Spacing: 80px;
    --Overall-BackgroundGutters: 30px;
    --Bottom-BackgroundGutter: 24px;
    /* ---------- MUD/CARDS ---------- */
    --MudSheet-BgColor: rgba(255,255,255,.50);
    --MudSheet-Shadow: 2px 2px 8px rgba(255,0,0,.20);
    --Global-Card-Shadow: 0 2px 8px rgba(0,0,0,.48);
    --Global-Card-Radius: 4px;
    --Action-Card-BgColor: rgba(255,255,255,.8);
    /* ---------- DETAIL CARD ---------- */
    --DetailCardPadding: 5px;
    --DetailCard-ContentPadding: 16px;
    --DetailCard-BgColor: #f2f3f8;
    --DetailCard-Field-BorderColor: #d2d2d2;
    --DetailCard-Field-BorderThickness: 1px;
    --DetailCard-Field-Spacing: 0px;
    --DetailCard-FieldLabel-BgColor: #f2f3f8;
    --DetailCard-FieldLabel-FontColor: rgba(0,0,0,.85);
    --DetailCard-FieldLabel-Width: 180px;
    --DetailCard-FieldData-BgColor: #ffffff;
    --DetailCard-FieldData-FontColor: rgba(0,0,0,.90);
    --DetailCard-Field-BorderRadius: 0px;
    /* ---------- LIST CARD ---------- */
    --ListCard-Padding: 0px;
    --ListCard-ContentPadding: 10px;
    --ListCard-BgColor: #f2f3f8;
    --ListCard-FieldLabel-BgColor: #f2f3f8;
    --ListCard-FieldLabel-FontColor: #000;
    --ListCard-FieldLabel-BorderColor: #d2d2d2;
    /* ---------- FORM CARD ---------- */
    --FormCard-ContentPadding: 10px;
    --FormCard-BgColor: #f2f3f8;
    --FormCard-Field-BorderColor: #d2d2d2;
    --FormCard-Field-BorderThickness: 1px;
    --FormCard-FieldLabel-BgColor: #f2f3f8;
    --FormCard-FieldLabel-FontColor: rgba(0,0,0,.75);
    --FormCard-FieldLabel-Width: 180px;
    --FormCard-Field-BorderRadius: 0px;
    /* ---------- LAYOUT (SINGLE SOURCE) ---------- */
    --page-content-max: calc(100vw - 60px); /* 24px gutters each side */
    --page-content-cap: 2400px; /* allow ultra-wide monitors */
    /* ---------- TABLE ---------- */
    --table-min-width-desktop: 2000px;
    --table-min-width-mobile: 720px;
    /* ---------- NAV ---------- */
    --cb-appbar-height: 64px;
    /* ---------- COLORS ---------- */
    --color-text-secondary: rgba(0,0,0,.6);
    /* ---------- BACKGROUND ---------- */
    --bg-image-url: url("/images/app/background.png");
    --bg-haze: rgba(255,255,255,.58);
    --bg-haze-mobile: rgba(255,255,255,.70);
    --bg-haze-dark: rgba(6,10,18,.78);
    /* ---------- CODEBLUE KIT v1 ---------- */
    --cb-card-radius: 5px;
    --cb-card-shadow: 0 6px 18px rgba(0,0,0,.10);
    --cb-card-bg: #fff;
    --cb-label-width: 180px;
    --cb-label-width-wide: 200px;
    --cb-row-border: rgba(0,0,0,.12);
}

/* Mobile variable overrides */
@media (max-width: 960px) {
    :root {
        --page-content-max: calc(100vw - 20px);
    }
}

@media (max-width: 600px) {
    :root {
        --Overall-BackgroundGutters: 4px;
        --DetailCard-ContentPadding: 12px;
        --DetailCard-FieldLabel-Width: 160px;
        --FormCard-FieldLabel-Width: 160px;
        --cb-label-width: 140px;
        --cb-appbar-height: 48px;
        --NavBar-Spacing: 55px;
    }

    .cb-page-header {
        padding: 0px 0px;
        border-radius: 5px;
    }

    .cb-page-header-inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px 0px;
        min-height: 10px;
    }
}

/* =================================================
   1) BASE
   ================================================= */
html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: Helvetica, Arial, sans-serif;
    overflow-y: auto;
}

.text-secondary {
    color: var(--color-text-secondary);
}



/* =================================================
   2) BACKGROUND (fixed vw/vh; consistent behavior)
   ================================================= */
.app-background {
    position: fixed;
    inset: 0;
    min-height: 100vh;
    min-width: 100vw;
    z-index: -1;
    background-image: linear-gradient(var(--bg-haze), var(--bg-haze)), var(--bg-image-url);
    background-size: cover;
    background-position: center;
}

@media (max-width: 600px) {
    .app-background {
        background-image: linear-gradient(var(--bg-haze-mobile), var(--bg-haze-mobile)), var(--bg-image-url);
    }
}

.app-shell {
    position: relative;
    width: 100%;
}

html[data-theme="dark"] .app-background,
.mud-theme-dark .app-background {
    background-image: linear-gradient(var(--bg-haze-dark), var(--bg-haze-dark)), var(--bg-image-url);
}

/* #region cb-app shell / nav */
/* =================================================
   APPBAR: FORCE EDGE-TO-EDGE NO MATTER WHAT
   ================================================= */

/* MudAppBar root */
.cb-appbar {
    position: fixed; /* just in case */
    left: 0 !important;
    right: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important; /* we’ll pad inner content instead */
}

    /* The toolbar element Mud creates inside the appbar */
    .cb-appbar .mud-toolbar,
    .cb-appbar .mud-toolbar-appbar {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }

    /* Kill Mud gutters/padding wherever they apply */
    .cb-appbar .mud-toolbar-gutters {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Ensure the toolbar content spans */
    .cb-appbar .mud-toolbar-content {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
    }
/* =================================================
   3) PAGE LAYOUT (ONE page-container)
   ================================================= */
.page-container {
    width: 100%;
    max-width: min(var(--page-content-max), var(--page-content-cap));
    margin-left: auto;
    margin-right: auto;
    
}

.main-content {
    padding-top: var(--NavBar-Spacing);
}

.page-gutters {
    padding-left: var(--Overall-BackgroundGutters);
    padding-right: var(--Overall-BackgroundGutters);
    padding-bottom: var(--Bottom-BackgroundGutter);
}

/* =================================================
   4) TOP BAR / APP BAR (logo left, menu right)
   ================================================= */
.cb-appbar,
.cb-topbar {
    height: var(--cb-appbar-height);
    min-height: var(--cb-appbar-height);
    max-height: var(--cb-appbar-height);
    display: flex;
    align-items: center;
    background-color: #ffffff !important;
    color: #000 !important;
    box-shadow: var(--MudSheet-Shadow);
}

.cb-appbar .mud-toolbar-content,
.cb-topbar .mud-toolbar-content {
    display: flex !important;
    align-items: center !important;
    width: 100%;
}

.cb-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.cb-nav-right {
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Keep right-side appbar actions away from the edge */
.cb-appbar .cb-nav-right { margin-right: 20px; }

.cb-logo {
    height: 44px !important;
    max-height: 44px !important;
    width: auto !important;
    max-width: 140px !important;
    object-fit: contain !important;
    display: block !important;
    flex: 0 0 auto !important;
}
/* Brand typography (applies to 'Code Blue' text in appbar) */
.cb-brand .mud-typography,
.cb-brand .mud-typography * {
    font-weight: 900;
    letter-spacing: .02em;
}
.cb-brand .mud-typography {
    font-size: 1.15rem;
    line-height: 1;
}

@media (max-width: 600px) {
    .cb-appbar > div {
        min-height: var(--cb-appbar-height);
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .cb-brand {
        gap: 10px;
    }

    .cb-logo {
        height: 34px !important;
        max-height: 34px !important;
    }

    .cb-title {
        font-size: 18px;
        line-height: 1;
    }

    .cb-nav-right {
        margin-left: 12px;
        gap: 6px;
    }

    .cb-appbar .cb-nav-right {
        margin-right: 0;
    }

    .cb-topbar-icon.mud-icon-button-root,
    .cb-appbar .mud-icon-button-root {
        width: 40px;
        height: 40px;
    }

    .srl-page .cb-page-header-inner,
    .wol-page .cb-page-header-inner {
        min-height: 52px;
        padding: 6px 44px;
    }

    .srl-page .cb-page-back,
    .wol-page .cb-page-back {
        position: absolute;
        left: 4px;
        top: 50%;
        transform: translateY(-50%);
    }

    .srl-page .cb-page-title,
    .wol-page .cb-page-title {
        display: block;
        width: 100%;
        margin: 0;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: clamp(1.15rem, 5.4vw, 1.6rem);
        line-height: 1.1;
    }
}


/* #endregion */
/* #region cb-surface / cb-action */
/* =================================================
   5) MODERN SURFACES + PRIMARY ACTION
   ================================================= */
.cb-surface-glass {
    background: rgba(255,255,255,.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 4px;
    box-shadow: 3px 6px 4px 0px rgba(0, 0, 0, .14);
}

html[data-theme="dark"] .cb-surface-glass,
.mud-theme-dark .cb-surface-glass {
    background: rgba(20,28,44,.86);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 14px 36px rgba(0,0,0,.55);
}

.cb-action-primary {
    background: linear-gradient(180deg,#ffbf00,#f59e0b);
    color: #111;
    font-weight: 650;
    border-radius: 5px;
    padding: 12px 22px;
    box-shadow: 0 8px 18px rgba(245,158,11,.35);
}

    .cb-action-primary:hover {
        transform: translateY(-1px);
    }

/* #endregion */

/* =================================================
   6) CARDS (MudSheet + action-card)
   ================================================= */
.mud-sheet {
    background: var(--MudSheet-BgColor);
    box-shadow: var(--MudSheet-Shadow);
}

.action-card {
    border-radius: var(--Global-Card-Radius);
    box-shadow: var(--Global-Card-Shadow);
    overflow: hidden;
    padding: 30px 30px;
    background: var(--Action-Card-BgColor);
}

/* =================================================
   8) LIST CARD
   ================================================= */
.list-card {
    background: var(--ListCard-BgColor);
    padding: var(--ListCard-ContentPadding);
    box-shadow: var(--MudSheet-Shadow);
}

    .list-card .mud-table thead th {
        background: var(--ListCard-FieldLabel-BgColor);
        color: var(--ListCard-FieldLabel-FontColor);
        border-bottom: 1px solid var(--ListCard-FieldLabel-BorderColor);
    }

    .list-card thead th {
        font-weight: 600 !important;
    }

/* =================================================
   10) UTILITIES
   ================================================= */
.row-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp-1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =================================================
   11) TABLE SCROLL
   ================================================= */
.table-scroll {
    overflow-x: auto;
}

    .table-scroll .mud-table {
        min-width: var(--table-min-width-desktop);
    }

@media (max-width:600px) {
    .table-scroll .mud-table {
        min-width: var(--table-min-width-mobile);
    }
}

/* #region cb-page-* */
/* =================================================
   12) WORK ORDER (WO) — mobile-first
   ================================================= */
.cb-stack-page {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width:600px) {
    .cb-stack-page {
        gap: 10px;
    }

    .cb-page-hero {
        padding: 14px;
        border-radius: 5px;
    }

    .cb-page-section > header {
        padding: 10px 12px;
        border-radius: 0;
        background: rgba(255,255,255,.3);
        backdrop-filter: blur(6px);
    }

    .cb-page-rows {
        padding: 10px 12px 12px 12px;
    }
}

.cb-page-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
    margin-bottom: 6px;
    border-radius: 2px;
}

.cb-page-title-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cb-page-hero {
    padding: 18px;
    border-radius: 4px;
    background: rgba(255,255,255,0.92);
    box-shadow: 0 2px 10px rgba(0,0,0,.10);
    backdrop-filter: blur(6px);
}

.cb-page-address {
    font-weight: 900;
    margin: 0;
    letter-spacing: .01em;
}

.cb-page-subline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: baseline;
    margin-top: 6px;
    color: rgba(0,0,0,.62);
    font-weight: 650;
}

.cb-page-subline a {
    color: inherit;
    text-decoration: underline;
    font-weight: 850;
}

html[data-theme="dark"] .cb-page-subline,
.mud-theme-dark .cb-page-subline {
    color: rgba(255,255,255,.72);
}

.cb-page-chips {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
    margin-top: 0;
    padding: 0;
}

@media (max-width:480px) {
    .cb-page-chips {
        gap: 8px;
    }
}

.cb-page-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 0;
    border-radius: 5px;
    padding: 10px 12px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.72);
    box-shadow: 0 8px 18px rgba(0,0,0,.06);
}

.cb-page-chip .k,
.cb-page-chip .v {
    width: 100%;
    text-align: center;
}

.cb-page-chip .k {
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(0,0,0,.55);
    margin-bottom: 4px;
}

.cb-page-chip .v {
    font-size: 1rem;
    font-weight: 750;
    color: rgba(0,0,0,.88);
}

.cb-page-chip .v.muted {
    font-weight: 500;
    color: rgba(0,0,0,.65);
}

@media (max-width:480px) {
    .cb-page-chip {
        padding: 8px 10px;
    }

    .cb-page-chip .k {
        font-size: .68rem;
    }

    .cb-page-chip .v {
        font-size: .95rem;
    }
}

:is(html[data-theme="dark"], .mud-theme-dark) .cb-page-chip {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 10px 22px rgba(0,0,0,.45);
}

:is(html[data-theme="dark"], .mud-theme-dark) .cb-page-chip .k {
    color: rgba(255,255,255,.65);
}

:is(html[data-theme="dark"], .mud-theme-dark) .cb-page-chip .v {
    color: rgba(255,255,255,.90);
}
.cb-page-section {
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 5px;
    overflow: hidden;
    background: rgba(255,255,255,0.60);
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    backdrop-filter: blur(6px);
}

    .cb-page-section > header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1px;
        padding: 8px 12px;
        background: rgba(255,255,255,.5); /* HEADER BACKGROUND */
        border-bottom: 1px solid rgba(0,0,0,.08);
    }

.cb-page-section > header > :first-child {
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .82rem;
    color: rgba(0,0,0,.72);
    margin: 0;
}

html[data-theme="dark"] .cb-page-section > header,
.mud-theme-dark .cb-page-section > header {
    background: rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

html[data-theme="dark"] .cb-page-section > header > :first-child,
.mud-theme-dark .cb-page-section > header > :first-child {
    color: rgba(255,255,255,.2);
}

.cb-page-rows {
    padding: 12px 14px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cb-page-rows[data-kvrows] > div {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 12px;
    align-items: start;
}

@media (max-width:600px) {
    .cb-page-rows[data-kvrows] > div {
        grid-template-columns: 120px 1fr;
    }
}

.cb-page-rows[data-kvrows] > div > .k {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: .76rem;
    color: rgba(0,0,0,.58);
}

.cb-page-rows[data-kvrows] > div > .v {
    font-size: .95rem;
    font-weight: 700;
    color: rgba(0,0,0,.88);
}

    .cb-page-rows[data-kvrows] > div > .v.block {
        white-space: pre-wrap;
    }

.cb-page-form .form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    margin: 0 15px 5px;
    background: rgba(255,255,255,.12);
    border-radius: 5px;
    overflow: hidden;
}

.cb-page-form .form-row > :first-child,
.cb-page-form .cb-page-form-field,
.cb-page-form .mud-input-slot input,
.cb-page-form .mud-input-slot textarea {
    display: grid;
    align-items: center;
}

.cb-page-form .form-row > :first-child {
    background: rgba(255,255,255,.14);
    border-right: 1px solid rgba(0,0,0,.08);
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
    font-size: .74rem;
    color: rgba(0,0,0,.62);
    gap: 10px;
}

.cb-page-form .cb-page-form-field {
    background: rgba(255,255,255,.5);
}

.cb-page-form .form-row[data-toplabel] {
    grid-template-columns: 1fr;
}

    .cb-page-form .form-row[data-toplabel] > :first-child {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,.08);
        
    }

.cb-page-form .cb-page-form-field > div {
    max-width: 100%;
}

.cb-page-form .mud-input-control,
.cb-page-form .mud-input-root,
.cb-page-form .mud-input-slot input,
.cb-page-form .mud-input-slot textarea {
    background: transparent;
    border-radius: 5px;
    box-shadow: none;
}

.cb-page-form .mud-input-control {
    margin: 0;
}

.cb-page-form .mud-input-slot input,
.cb-page-form .mud-input-slot textarea {
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.14);
    font-weight: 650;
    
}

:is(html[data-theme="dark"], .mud-theme-dark) .cb-page-form .form-row {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 12px 26px rgba(0,0,0,.55);
}

:is(html[data-theme="dark"], .mud-theme-dark) .cb-page-form .form-row > :first-child {
    background: rgba(255,255,255,.04);
    border-right: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.72);
}

:is(html[data-theme="dark"], .mud-theme-dark) .cb-page-form .cb-page-form-field {
    background: rgba(255,255,255,.02);
}

:is(html[data-theme="dark"], .mud-theme-dark) .cb-page-form .mud-input-slot input,
:is(html[data-theme="dark"], .mud-theme-dark) .cb-page-form .mud-input-slot textarea {
    background: rgba(255,255,255,.05);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
    color: rgba(255,255,255,.90);
}
/* claims table tighten */
.cb-page-section .mud-table thead th,
.cb-page-section .mud-table tbody td {
    padding-top: 2px;
    padding-bottom: 2px;

}

/* Details blocks */
.cb-page-details {
    margin-top: 2px;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

    .cb-page-details .k {
        background: #f2f3f8;
        padding: 8px 10px;
        font-weight: 800;
        font-size: .78rem;
        text-transform: uppercase;
        letter-spacing: .02em;
        border-bottom: 1px solid rgba(0,0,0,.08);
    }

    .cb-page-details .v {
        padding: 10px 12px;
        line-height: 1.35;
        min-height: calc(1.35em * 4 + 16px);
    }

.cb-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    word-break: break-word;
    line-height: 1.35;
    max-height: calc(1.35em * 3);
}

.cb-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
    word-break: break-word;
    line-height: 1.35;
    max-height: calc(1.35em * 4);
}

/* Layout columns (single definition) */
.cb-page-columns {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 14px;
    align-items: start;
}

@media (max-width: 900px) {
    .cb-page-columns {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .cb-page-col {
        width: 100%;
    }
}

.cb-page-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cb-page-columns > .cb-page-col:last-child {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* #endregion */
/* #region cb-file-* / upload-* */
/* =================================================
   13) UPLOAD BLOCK (single source)
   ================================================= */
.upload-block {
    border: 1px solid var(--cb-row-border);
    border-radius: 5px;
    padding: 12px;
    background: rgba(255,255,255,.65);
}

.upload-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.upload-filename {
    text-align: center;
    margin-top: 6px;
    min-height: 18px;
    color: rgba(0,0,0,.60);
    font-size: .82rem;
    opacity: .7;
}

.cb-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.cb-file-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,.30);
    border-radius: 5px;
    padding: 8px 12px;
    cursor: pointer;
    user-select: none;
    background: #fff;
    font-weight: 700;
    font-size: .9rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

    .cb-file-button:active {
        transform: translateY(1px);
    }

/* #endregion */
/* #region cb-intake / cb-submit */
/* =================================================
   15) REQUEST SERVICE (PUBLIC INTAKE)
   ================================================= */
.cb-intake {
    max-width: 980px;
    margin: 0 auto;
    padding: 18px;
    border-radius: 5px;
    background: rgba(255,255,255,0.94);
    box-shadow: 0 10px 26px rgba(0,0,0,.18);
    backdrop-filter: blur(6px);
}

.cb-intake-title {
    font-weight: 900;
    letter-spacing: .02em;
    margin: 0;
}

.cb-intake-subtitle {
    margin-top: 6px;
    color: rgba(0,0,0,.65);
}

.cb-intake .mud-input-label {
    font-weight: 700;
}

.cb-submit {
    min-width: 200px;
    font-weight: 900;
    border-radius: 8px;
    box-shadow: 0px 9px 16px 2px rgb(0 0 0 / 20%), 0px 2px 2px 2px rgba(0, 0, 0, .14), 0px 1px 5px 0px rgba(0, 0, 0, .12)
}

@media (max-width:600px) {
    .cb-intake {
        padding: 14px;
        border-radius: 5px;
    }
}

/* #endregion */
/* #region cb-login / login-* */
/* =================================================
   16) LOGIN
   ================================================= */
.login-wrap {
    min-height: calc(100vh - var(--NavBar-Spacing));
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 18px 12px;
}

    .login-wrap .action-card {
        width: 100%;
        max-width: 520px;
        padding: 18px;
        margin: 0 auto;
        border-radius: 5px;
    }

.login-logo {
    width: 100%;
    height: auto;
    max-width: 260px;
    display: block;
    margin: 0 auto 10px auto;
}

.login-card .mud-input-control {
    margin-top: 10px;
}

.cb-login-btn {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (min-width:1100px) {
    .login-wrap {
        padding-top: 32px;
    }
}

/* #endregion */
/* #region cb-page-header / cb-map / cb-panels */
/* =================================================
   17) SERVICE REQUEST DETAIL (SR) — polished skin (scoped)
   ================================================= */

/* Header bar (title + back) */
.cb-page-header{
    padding:8px 10px;
    border-radius:5px;
}
.cb-page-header-inner{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:4px 8px;
    min-height:44px;
}

.cb-page-title,
.cb-page-header .cb-page-title,
.request-service .rs-title,
.request-service .mud-typography.rs-title {
    margin: 0;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2;
    letter-spacing: 0;
    color: inherit;
}

.cb-map {
    flex: 1;
    width: 90%;
    min-height: 280px;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 14px 14px 14px;
    box-shadow: 0 10px 26px rgba(0,0,0,.18);
    background: rgba(255,255,255,.5);
}

html[data-theme="dark"] .cb-map,
.mud-theme-dark .cb-map {
    box-shadow: 2px 6px 5px 0px rgba(0, 0, 0, .18);
    background: rgba(255,255,255,.08);
}

/* Ensure MudIconButton centers the icon perfectly */
.cb-page-back .mud-icon-button-label {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}

.cb-page-back svg {
    width: 20px;
    height: 20px;
}
/* Expansion panel Header */
.cb-panels .mud-expand-panel {
    background: rgba(255,255,255,.5);
    backdrop-filter: blur(6px);
    box-shadow: 5px 4px 5px rgba(0,0,0,0.3);
}
.cb-panels .mud-expand-panel-header{
    padding: 20px;
}
.cb-panels .mud-expand-panel-content{
    background: rgba(255,255,255,.0);
}

/* #endregion */
/* #region cb-admin / cb-card / cb-soft-* / cb-table / cb-role* */
/* =====================================================
   DASHBOARD STABILIZED LAYOUT (DROP-IN BLOCK)
   ===================================================== */

/* =====================================================
   OfficeDashboard SIMPLE CSS
   Clean. Minimal. No flex gymnastics.
   You control: gaps, transparency, column widths.
   ===================================================== */

/* Top-right menu popover width */
.cb-topmenu-popover {
    min-width: 460px;
}

/* Make the logout button look like a menu item */
.cb-menu-logout {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    text-align: left;
    font: inherit;
    color: inherit;
    cursor: pointer;
}

.cb-page {
    display:flex;
    flex-direction:column;
    gap:10px;
}

.cb-admin-page {
    padding: 18px 18px 40px;
}

.cb-admin-page-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin: 6px 0 18px;
}

.cb-eyebrow {
    font-size: 12px;
    opacity: .75;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.cb-title {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
}

.cb-subtitle {
    opacity: .8;
    margin-top: 4px;
}

.cb-pill {
    border-radius: 999px;
}

.cb-card {
    border-radius: 5px;
    padding: 14px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.35);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.cb-card > header {
    padding: 2px 4px 10px;
}

.cb-card > header > h2 {
    margin: 0;
    font-weight: 800;
    font-size: 16px;
}

.cb-card > header > p {
    margin: 2px 0 0;
    opacity: .8;
    font-size: 13px;
}

.cb-divider {
    opacity: .55;
}

.cb-card > .mud-stack {
    padding: 12px 4px 4px;
}

.cb-soft-panel {
    padding: 12px;
    border-radius: 5px;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(0,0,0,.06);
}

.cb-soft-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.cb-soft-hint {
    opacity: .75;
    margin-top: 6px;
}

.cb-role-row {
    flex-wrap: wrap;
}














.cb-table .mud-table-container {
    border-radius: 5px;
    overflow: hidden;
}

.od-table :is(th, td, .mud-table-cell),
.wol-table :is(th, td, .mud-table-cell),
.srl-table :is(th, td, .mud-table-cell),
.cd-table :is(th, td, .mud-table-cell),
.cl-table :is(th, td, .mud-table-cell),
.claims-table :is(th, td, .mud-table-cell),
.cb-table-listlike :is(th, td, .mud-table-cell),
.cb-table :is(th, td, .mud-table-cell) {
    border: 0 !important;
}

.od-table tbody tr:nth-child(even) :is(td, .mud-table-cell),
.wol-table tbody tr:nth-child(even) :is(td, .mud-table-cell),
.srl-table tbody tr:nth-child(even) :is(td, .mud-table-cell),
.cd-table tbody tr:nth-child(even) :is(td, .mud-table-cell),
.cl-table tbody tr:nth-child(even) :is(td, .mud-table-cell),
.claims-table tbody tr:nth-child(even) :is(td, .mud-table-cell),
.cb-table-listlike tbody tr:nth-child(even) :is(td, .mud-table-cell),
.cb-table tbody tr:nth-child(even) :is(td, .mud-table-cell) {
    background: rgba(0, 0, 0, .08);
}

.od-table,
.wol-table,
.srl-table,
.cl-tableHost,
.cd-table,
.cl-table,
.claims-table {
    --cb-view-col-width: 50px;
    --cb-address-col-width: 220px;
    --cb-contact-col-width: 160px;
    --cb-phone-col-width: 140px;
    --cb-date-col-width: 80px;
    --cb-tech-col-width: 100px;
    --cb-desc-col-width: auto;
    --cb-claim-col-width: 90px;
    --cb-component-col-width: 160px;
    --cb-model-col-width: 140px;
    --cb-serial-col-width: 160px;
    gap: 0px;
}

.cd-table {
    --cb-claim-col-width: 150px;
}

:is(.od-table, .wol-table, .srl-table, .cd-table, .cl-table, .claims-table) :is(th, td).cb-view-col {
    width: var(--cb-view-col-width) !important;
    min-width: var(--cb-view-col-width) !important;
    max-width: var(--cb-view-col-width) !important;
    padding-left: 5px !important;
}

:is(.od-table, .wol-table, .srl-table, .cd-table, .cl-table, .claims-table) :is(th, td).cb-address-col {
    width: var(--cb-address-col-width) !important;
    min-width: var(--cb-address-col-width) !important;
    max-width: var(--cb-address-col-width) !important;
    padding: 0px !important;
}

:is(.od-table, .wol-table, .srl-table, .cd-table, .cl-table, .claims-table) :is(th, td).cb-contact-col {
    width: var(--cb-contact-col-width) !important;
    min-width: var(--cb-contact-col-width) !important;
    max-width: var(--cb-contact-col-width) !important;
}

:is(.od-table, .wol-table, .srl-table, .cd-table, .cl-table, .claims-table) :is(th, td).cb-phone-col {
    width: var(--cb-phone-col-width) !important;
    min-width: var(--cb-phone-col-width) !important;
    max-width: var(--cb-phone-col-width) !important;
    padding: 0px;
}

:is(.od-table, .wol-table, .srl-table, .cd-table, .cl-table, .claims-table) :is(th, td).cb-date-col {
    width: var(--cb-date-col-width) !important;
    min-width: var(--cb-date-col-width) !important;
    max-width: var(--cb-date-col-width) !important;
    padding: 0px !important;
}

:is(.od-table, .wol-table, .srl-table, .cd-table, .cl-table, .claims-table) :is(th, td).cb-tech-col {
    width: var(--cb-tech-col-width) !important;
    min-width: var(--cb-tech-col-width) !important;
    max-width: var(--cb-tech-col-width) !important;
    padding: 0px !important;
}

:is(.od-table, .wol-table, .srl-table, .cd-table, .cl-table, .claims-table) :is(th, td).cb-desc-col {
    width: var(--cb-desc-col-width) !important;
    padding: 0px !important;
}

:is(.od-table, .wol-table, .srl-table, .cd-table, .cl-table, .claims-table) :is(th, td).cb-claim-col {
    width: var(--cb-claim-col-width) !important;
    min-width: var(--cb-claim-col-width) !important;
    max-width: var(--cb-claim-col-width) !important;
    padding: 0px !important;
}

:is(.od-table, .wol-table, .srl-table, .cd-table, .cl-table, .claims-table) :is(th, td).cb-component-col {
    width: var(--cb-component-col-width) !important;
    min-width: var(--cb-component-col-width) !important;
    max-width: var(--cb-component-col-width) !important;
    padding: 0px !important;
}

:is(.od-table, .wol-table, .srl-table, .cd-table, .cl-table, .claims-table) :is(th, td).cb-model-col {
    width: var(--cb-model-col-width) !important;
    min-width: var(--cb-model-col-width) !important;
    max-width: var(--cb-model-col-width) !important;
    padding: 0px !important;
}

:is(.od-table, .wol-table, .srl-table, .cd-table, .cl-table, .claims-table) :is(th, td).cb-serial-col {
    width: var(--cb-serial-col-width) !important;
    min-width: var(--cb-serial-col-width) !important;
    max-width: var(--cb-serial-col-width) !important;
    padding: 0px !important;
}

.cb-rolechips {
    row-gap: 6px;
}

.request-service {
    --rs-accent: #f7a600;
    --rs-accent-hover: #e09600;
    padding-top: 24px;
    padding-bottom: 40px;
}

.request-service.mud-container,
.request-service.page-container {
    width: 100%;
    max-width: none;
}

.request-service.mud-container {
    padding-left: 0;
    padding-right: 0;
}

.request-service .rs-shell {
    max-width: 1040px;
    margin: 0 auto;
}

.request-service .rs-frame {
    padding: 15px 25px 5px;
    border-radius: 20px;
    background: rgba(245, 250, 255, 0.84);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 22px 48px rgba(29, 71, 112, 0.2);
}

.request-service .rs-header {
    text-align: center;
    margin-bottom: 30px;
}

.request-service .rs-title,
.request-service .mud-typography.rs-title {
    margin: 0 0 8px;
    color: #263a56;
    white-space: nowrap;
}

.request-service .rs-subtitle,
.request-service .mud-typography.rs-subtitle {
    color: rgba(43, 64, 91, 0.82);
}

.request-service .rs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.request-service .rs-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 25px 24px 22px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(214, 226, 240, 0.98);
    box-shadow: 0 12px 26px rgba(43, 64, 91, 0.14);
}

.request-service .rs-card-title,
.request-service .mud-typography.rs-card-title {
    margin: 0 0 0px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: #314866;
}

.request-service .rs-subsection-title,
.request-service .mud-typography.rs-subsection-title {
    margin: 0 0 2px;
    font-size: 1.05rem;
    color: #365171;
}

.request-service .rs-sectionDivider {
    height: 1px;
    margin: 22px 0 18px;
    background: linear-gradient(90deg, rgba(180, 197, 216, 0.85), rgba(180, 197, 216, 0.2));
}

.request-service .rs-subsection {
    margin-bottom: 2px;
    padding-bottom: 2px;
}

.request-service .rs-subsection-copy,
.request-service .mud-typography.rs-subsection-copy {
    margin: 0 0 6px;
    color: rgba(54, 81, 113, 0.76);
    font-size: .9rem;
}

.request-service .rs-portal-contact-card {
    margin: 2px 0 10px;
    padding: 14px 15px;
    border-radius: 12px;
    background: linear-gradient(rgba(242, 247, 252, 0.95), rgba(233, 241, 249, 0.96));
    border: 1px solid rgba(185, 202, 220, 0.9);
}

.request-service .rs-portal-contact-title,
.request-service .mud-typography.rs-portal-contact-title {
    margin: 0 0 2px;
    color: #304866;
    font-weight: 800;
}

.request-service .rs-portal-contact-copy,
.request-service .mud-typography.rs-portal-contact-copy {
    margin: 0;
    color: rgba(48, 72, 102, 0.8);
    font-size: 0.88rem;
    line-height: 1.4;
}

.request-service .rs-site-match-card {
    margin-top: 2px;
    background: linear-gradient(rgba(233, 245, 232, 0.95), rgba(241, 250, 240, 0.96));
    border-color: rgba(138, 181, 135, 0.75);
}

.request-service .cb-field {
    padding-top: 6px;
    padding-bottom: 6px;
}

.request-service .cb-field-label,
.request-service .mud-typography.cb-field-label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #44556f;
}

.request-service .rs-radioRow {
    gap: 18px;
    padding-top: 8px;
}

.request-service .rs-animalChoices {
    gap: 12px;
}

.request-service .rs-updatesField {
    padding-top: 2px;
}

.request-service .rs-updatesRow {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.request-service .rs-updatesLabel {
    margin-bottom: 0;
    min-width: 130px;
}

.request-service .rs-updateToggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 2px 0;
    border-radius: 999px;
    background: transparent;
    border: 0;
    color: #44556f;
    font-weight: 600;
    line-height: 1;
}

.request-service .rs-updateToggle span {
    transform: translateY(-1px);
}

.request-service .cb-input {
    margin-top: 0;
}

.request-service .cb-input .mud-input-control {
    background: #fff;
    border-radius: 10px;
}

.request-service .cb-input .mud-input-label {
    display: none;
}

.request-service .cb-input .mud-input-outlined {
    margin-top: 0;
}

.request-service .cb-input .mud-input-control-input-container {
    padding-top: 0;
    padding-bottom: 0;
}

.request-service .cb-input .mud-input-outlined-border {
    border-color: #d4dfeb;
    border-width: 1px;
}

.request-service .cb-input:hover .mud-input-outlined-border {
    border-color: #aebfd3;
}

.request-service .cb-input.mud-input-focused .mud-input-outlined-border {
    border-color: #2a88e6;
}

.request-service .mud-input-slot {
    padding-top: 12px;
    padding-bottom: 12px;
}

.request-service .mud-grid-item {
    padding: 10px !important;
}

.request-service .rs-card > .mud-grid {
    flex: 1 1 auto;
    align-content: start;
}

.request-service .rs-submitWrap {
    margin-top: 24px;
    padding-top: 10px;
    border-top: 1px solid rgba(187, 205, 224, 0.55);
}

.request-service .rs-problem-field {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.request-service .rs-problem-field .cb-input,
.request-service .rs-problem-field .cb-input .mud-input-control,
.request-service .rs-problem-field .cb-input .mud-input-control-input-container,
.request-service .rs-problem-field .cb-input .mud-input-outlined {
    height: 100%;
}

.request-service .rs-problem-field .mud-input-slot {
    min-height: 188px;
    height: 100%;
    align-items: flex-start;
}

    .request-service .rs-submit {
        min-width: 230px;
        font-weight: 800;
        border-radius: 12px;
        padding: 13px 24px;
        color: #1f1f1f;
        background: var(--rs-accent);
        box-shadow: 2px 3px 3px 1px rgb(132 115 80 / 32%);
    }

.request-service .rs-submit:hover {
    background: var(--rs-accent-hover);
}

.builder-portal-table-shell {
    overflow: hidden;
    border-radius: 5px;
}

.builder-portal-table .mud-table-container {
    overflow-x: auto;
    overflow-y: auto;
    border-radius: 5px;
}

.builder-portal-table table {
    min-width: 1050px;
}

.builder-portal-table thead th,
.builder-portal-table .mud-table-head th {
    position: sticky;
    top: 0;
    z-index: 2;
    background: rgba(235, 244, 252, 0.96);
    color: #22344d;
    font-weight: 800;
    letter-spacing: .03em;
    text-transform: uppercase;
    font-size: .74rem;
    border-bottom: 1px solid rgba(34, 52, 77, 0.14);
}

.builder-portal-table tbody tr:nth-child(odd) :is(td, .mud-table-cell) {
    background: rgba(255, 255, 255, 0.90);
}

.builder-portal-table tbody tr:nth-child(even) :is(td, .mud-table-cell) {
    background: rgba(226, 237, 248, 0.78);
}

.builder-portal-table :is(td, .mud-table-cell) {
    vertical-align: top;
}

.builder-portal-panels {
    gap: 0.85rem;
}

.builder-portal-panel {
    border: 1px solid rgba(188, 205, 224, 0.9);
    border-radius: 5px;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(245, 249, 252, 0.96));
}

.builder-portal-panel .mud-expand-panel-header {
    padding: 1rem 1rem 0.9rem;
    font-weight: 800;
    color: #203349;
}

.builder-portal-panel .mud-expand-panel-content {
    padding: 0 1rem 1rem;
}

.builder-portal-site-table table {
    min-width: 760px;
}

.builder-portal-install {
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 240, 201, 0.94), rgba(255, 250, 232, 0.96));
    border: 1px solid rgba(214, 157, 39, 0.28);
    box-shadow: 0 12px 28px rgba(146, 98, 8, 0.14);
}

.builder-portal-install-title,
.mud-typography.builder-portal-install-title {
    margin: 0 0 4px;
    color: #694100;
    font-weight: 900;
}

.builder-portal-install-copy,
.mud-typography.builder-portal-install-copy {
    margin: 0;
    color: rgba(92, 63, 9, 0.82);
}

.builder-portal-install-pulse {
    animation: builder-portal-install-pulse 1.15s ease-in-out 2;
}

@keyframes builder-portal-install-pulse {
    0% {
        transform: translateY(0);
        box-shadow: 0 12px 28px rgba(146, 98, 8, 0.14);
    }
    50% {
        transform: translateY(-2px);
        box-shadow: 0 18px 36px rgba(214, 157, 39, 0.28);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 12px 28px rgba(146, 98, 8, 0.14);
    }
}

.request-service .cb-home-shell {
    display: flex;
    flex-direction: column;
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
}

.request-service .cb-home-hero,
.request-service .cb-home-feature,
.request-service .cb-home-band {
    background: rgba(245, 250, 255, 0.90);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 22px 48px rgba(29, 71, 112, 0.16);
}

.request-service .cb-home-hero {
    padding: 34px;
    border-radius: 24px;
}

.request-service .cb-home-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 30px;
    align-items: center;
}

.request-service .cb-home-copy {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.request-service .mud-typography.cb-home-eyebrow {
    display: block;
    margin: 0;
    font-size: .82rem !important;
    font-weight: 900 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase;
    color: #2d638e;
}

.request-service .mud-typography.cb-home-title {
    margin: 0;
    color: #213754;
    font-size: clamp(2.6rem, 5vw, 4.6rem) !important;
    line-height: .98 !important;
    font-weight: 900 !important;
    letter-spacing: -.04em !important;
}

.request-service .mud-typography.cb-home-lead {
    max-width: 43rem;
    margin: 0;
    color: rgba(34, 52, 77, 0.84);
    font-size: 1.08rem !important;
    line-height: 1.65 !important;
    font-weight: 500 !important;
}

.request-service .cb-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.request-service .cb-home-primary.mud-button-root {
    background: linear-gradient(180deg, #1f8ad7, #176ead);
    color: #fff;
    font-weight: 800;
    border-radius: 999px;
    padding: 10px 26px;
    box-shadow: 0 12px 24px rgba(23, 110, 173, 0.28);
}

.request-service .cb-home-secondary.mud-button-root {
    color: #23405e;
    font-weight: 800;
    border-radius: 999px;
    padding: 10px 8px;
}

.request-service .cb-home-visual {
    position: relative;
    min-height: 390px;
}

.request-service .cb-home-photo {
    position: absolute;
    border-radius: 24px;
    background-image: linear-gradient(rgba(10, 41, 70, 0.12), rgba(10, 41, 70, 0.22)), url("/images/app/Background.png");
    background-size: cover;
    background-position: center;
    box-shadow: 0 18px 36px rgba(23, 44, 70, 0.18);
    border: 1px solid rgba(255,255,255,.72);
}

.request-service .cb-home-photo-main {
    inset: 28px 0 0 52px;
}

.request-service .cb-home-photo-top {
    width: 190px;
    height: 140px;
    top: 0;
    left: 0;
    transform: rotate(-7deg);
}

.request-service .cb-home-photo-bottom {
    width: 210px;
    height: 152px;
    right: 18px;
    bottom: 10px;
    transform: rotate(8deg);
}

.request-service .cb-home-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.request-service .cb-home-feature {
    padding: 22px 20px 20px;
    border-radius: 18px;
}

.request-service .mud-typography.cb-home-feature-title {
    margin: 0 0 8px;
    color: #223b57;
    font-weight: 900 !important;
}

.request-service .mud-typography.cb-home-feature-copy {
    margin: 0;
    color: rgba(34, 52, 77, 0.8);
    line-height: 1.55 !important;
    font-weight: 500 !important;
}

.request-service .cb-home-band {
    padding: 24px 26px;
    border-radius: 20px;
}

.request-service .cb-home-band-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
}

.request-service .mud-typography.cb-home-band-title {
    margin: 0 0 8px;
    color: #223b57;
    font-weight: 900 !important;
}

.request-service .mud-typography.cb-home-band-copy {
    margin: 0;
    color: rgba(34, 52, 77, 0.8);
    font-weight: 500 !important;
}

.request-service .cb-home-band-button.mud-button-root {
    border-radius: 999px;
    border-color: rgba(35, 64, 94, 0.25);
    color: #223b57;
    font-weight: 800;
    padding-inline: 24px;
}

.request-service .rs-updateCheck .mud-button-root,
.request-service .rs-animalChoice .mud-button-root {
    color: var(--rs-accent);
}

.request-service .rs-updateCheck {
    margin: 0;
}

.request-service .rs-animalChoice {
    margin: 0;
    padding: 2px 0;
    border-radius: 999px;
    background: transparent;
    border: 0;
    color: #44556f;
    font-weight: 600;
}

@media (max-width: 900px) {
    .request-service .cb-home-hero-grid,
    .request-service .cb-home-band-grid,
    .request-service .cb-home-feature-grid {
        grid-template-columns: 1fr;
    }

    .request-service .cb-home-visual {
        min-height: 310px;
    }

    .request-service .rs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .request-service .rs-problem-field .mud-input-slot {
        min-height: 148px;
    }
}

.cl-search,
.srl-search,
.wol-search,
.claims-search {
    width: 100%;
    background-color: rgba(255,255,255,.6);
    border-radius: 4px;
}

@media (max-width: 600px) {
    .request-service.page-container,
    .request-service.page-gutters,
    .request-service.mud-container {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .request-service {
        width: 100%;
        padding-top: 6px;
        padding-bottom: 12px;
    }

    .request-service .rs-shell {
        max-width: none;
        margin: 0;
        width: 100%;
    }

    .request-service .cb-home-shell {
        gap: 12px;
    }

    .request-service .cb-home-hero {
        padding: 18px 14px;
        border-radius: 8px;
    }

    .request-service .mud-typography.cb-home-title {
        font-size: 2rem !important;
        line-height: 1.04 !important;
    }

    .request-service .mud-typography.cb-home-lead {
        font-size: .95rem !important;
        line-height: 1.5 !important;
    }

    .request-service .cb-home-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .request-service .cb-home-primary.mud-button-root,
    .request-service .cb-home-band-button.mud-button-root {
        width: 100%;
    }

    .request-service .cb-home-visual {
        min-height: 240px;
    }

    .request-service .cb-home-photo-main {
        inset: 18px 6px 0 40px;
    }

    .request-service .cb-home-photo-top {
        width: 120px;
        height: 102px;
    }

    .request-service .cb-home-photo-bottom {
        width: 136px;
        height: 108px;
        right: 6px;
        bottom: 6px;
    }

    .request-service .cb-home-feature {
        padding: 16px 14px;
        border-radius: 10px;
    }

    .request-service .cb-home-band {
        padding: 16px 14px;
        border-radius: 10px;
    }

    .request-service .rs-frame {
        padding: 15px 10px 15px;
        border-radius: 5px;
    }

    .request-service .rs-header {
        margin-bottom: 6px;
    }

    .request-service .rs-title,
    .request-service .mud-typography.rs-title {
        font-size: 1.5rem !important;
        line-height: 1.2;
        margin-bottom: 2px;
        white-space: nowrap;
    }

    .request-service .rs-subtitle,
    .request-service .mud-typography.rs-subtitle {
        font-size: .8rem;
        line-height: 1.15;
        max-width: 250px;
        margin: 0 auto;
    }

    .request-service .rs-grid {
        gap: 8px;
    }

    .request-service .rs-card {
        padding: 10px 12px 12px;
        border-radius: 15px;
    }

    .request-service .rs-card-title,
    .request-service .mud-typography.rs-card-title {
        margin-bottom: 8px;
        font-size: .96rem;
        text-align: center;
    }

    .request-service .rs-subsection-title,
    .request-service .mud-typography.rs-subsection-title {
        font-size: .98rem;
        text-align: center;
    }

    .request-service .rs-subsection-copy,
    .request-service .mud-typography.rs-subsection-copy {
        margin-bottom: 6px;
        font-size: .78rem;
        line-height: 1.18;
        text-align: center;
    }

    .request-service .rs-sectionDivider {
        margin: 7px 0 7px;
    }

    .request-service .cb-field {
        padding-top: 0;
        padding-bottom: 0;
    }

    .request-service .rs-card:last-child .cb-field {
        padding-top: 0;
        padding-bottom: 0;
    }

    .request-service .cb-field-label,
    .request-service .mud-typography.cb-field-label {
        margin-bottom: 4px;
        font-size: .72rem;
    }

    .request-service .mud-grid-item {
        padding: 2px !important;
    }

    .request-service .mud-input-slot {
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .request-service .rs-updatesRow {
        gap: 6px;
        align-items: flex-start;
    }

    .request-service .rs-updatesLabel {
        min-width: 100%;
        margin-bottom: 1px;
    }

    .request-service .rs-updateToggle {
        flex: 1 1 0;
        justify-content: center;
        padding: 1px 0;
        font-size: .8rem;
        gap: 4px;
        min-height: 26px;
    }

    .request-service .rs-animalChoices {
        gap: 6px;
        width: 100%;
    }

    .request-service .rs-animalChoice {
        flex: 1 1 0;
        justify-content: center;
        padding: 1px 0;
        font-size: .8rem;
        min-height: 26px;
    }

    .request-service .rs-animalChoices .mud-radio {
        width: calc(50% - 4px);
    }

    .request-service .rs-animalChoice .mud-button-root,
    .request-service .rs-updateCheck .mud-button-root {
        transform: scale(0.92);
        transform-origin: center;
    }

    .request-service .rs-submitWrap {
        margin-top: 8px;
        padding-top: 8px;
    }

    .request-service .rs-submit {
        min-width: 180px;
        padding: 10px 18px;
    }

    .request-service .rs-problem-field .mud-input-slot {
        min-height: 128px;
    }
}































/* #endregion */
