:root {
  --bs-primary: #043A53;
  --bs-primary-rgb: 4,58,83;
  --bs-link-color: #002EC1;
  --bs-link-color-rgb: 0,46,193;
  --bs-link-hover-color: #043A53;
  --bs-link-hover-color-rgb: 4,58,83;
  --bs-success: #00A86B;
  --bs-success-rgb: 0,168,107;
  --bs-warning: #F0B73F;
  --bs-warning-rgb: 240,183,63;
  --bs-orange: #F6921E;
  --bs-orange-rgb: 246,146,30;
  --bs-danger: #dc3545;
  --bs-danger-rgb: 220,53,69;
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), .25);
  --itbs-primary-hover: #0A4F70;
  --itbs-warning-hover: #F4C761;
  --itbs-login-surface: var(--highdmin-body-bg, #f3f6f8);
  --itbs-login-surface-rgb: 243,246,248;
  --itbs-login-text-muted: var(--bs-secondary-color, #6c757d);
  --itbs-login-hero-subtitle: rgba(255, 255, 255, 0.92);
}
.search-box {
    display: flex;
    position: relative;
    align-items: center;
    width: 300px;
}

@media (max-width: 768px) {
    .search-box {
        display: flex;
        position: relative;
        align-items: center;
        width: 100%;
    }
}

.search-box>input {
    padding-left: 3em;
    background-color: #fff !important;
    border: 1.5px solid #E3EAEF;
}

.search-box>input::placeholder {
    color: #0e1620;
    opacity: 0.4;
}

.search-box>label {
    position: absolute;
    left: 1em;
    cursor: text;
    top: 50%;
    transform: translateY(-50%);
}

/* ============================================
   Search Box Wrapper - New Component Styles
   ============================================ */

.search-box-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--highdmin-topbar-search-bg, rgba(0, 0, 0, 0.04));
    border-radius: 24px;
    border: 1px solid transparent;
    transition: background-color 0.15s ease, border-color 0.15s ease;
    cursor: pointer;
}

.search-box-wrapper:hover {
    background-color: var(--highdmin-topbar-search-bg-hover, rgba(0, 0, 0, 0.08));
}

.search-box-wrapper.focused {
    background-color: var(--highdmin-topbar-search-bg-focus, rgba(0, 0, 0, 0.06));
    border-color: var(--bs-primary);
}

[data-bs-theme="dark"] .search-box-wrapper {
    background-color: rgba(255, 255, 255, 0.08);
}

[data-bs-theme="dark"] .search-box-wrapper:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

[data-bs-theme="dark"] .search-box-wrapper.focused {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--bs-primary);
}

.search-box-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.search-box-wrapper.sm .search-box-icon {
    font-size: 16px;
}

.search-box-wrapper.lg .search-box-icon {
    font-size: 20px;
}

.search-box-input {
    border: none !important;
    background: transparent !important;
    color: var(--bs-body-color) !important;
    font-size: 15px;
    font-weight: 500;
    padding: 0 !important;
    outline: none;
    flex: 1;
}

.search-box-input::placeholder {
    color: var(--bs-secondary-color);
    font-weight: 400;
}

.search-box-input:focus::placeholder {
    color: var(--bs-tertiary-color);
}

.search-box-placeholder-text {
    color: var(--bs-secondary-color);
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

/* Size variations */
.search-box-wrapper.sm {
    padding: 6px 12px;
}

.search-box-wrapper.lg {
    padding: 10px 20px;
    width: 100%;
    max-width: 440px;
}

.search-box-wrapper.md {
    width: 360px;
}

/* Modal variant */
.search-box-wrapper.modal-variant {
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--bs-border-color);
}

.search-box-wrapper.modal-variant:hover,
.search-box-wrapper.modal-variant.focused {
    background-color: var(--bs-body-bg);
    border-color: var(--bs-primary);
}

/* Responsive */
@media (max-width: 1399px) {
    .search-box-wrapper.md {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .search-box-wrapper.md {
        width: 280px;
    }
}

/* Toolbar-driven export: hide built-in DataTables button strip when table opts in */
.dataTables_wrapper:has(table.dataTable.dt-hide-internal-buttons) .dt-buttons {
    display: none !important;
}

/* Select2 disabled controls do not inherit Bootstrap dark-mode variables by default. */
[data-bs-theme="dark"] .select2-container--disabled .select2-selection {
    background-color: var(--bs-secondary-bg) !important;
    border-color: var(--bs-border-color) !important;
    opacity: 1;
}

[data-bs-theme="dark"] .select2-container--disabled .select2-selection__rendered,
[data-bs-theme="dark"] .select2-container--disabled .select2-selection__placeholder {
    color: var(--bs-secondary-color) !important;
}

/* Dashboard topbar layout overrides */
html:not([data-layout="topnav"]) {
    --dashboard-shell-offset: calc(var(--highdmin-sidenav-width) + 12px);
}

html[data-sidenav-size="condensed"]:not([data-layout="topnav"]),
html[data-sidenav-size="compact"]:not([data-layout="topnav"]),
html[data-sidenav-size="sm-hover"]:not([data-layout="topnav"]) {
    --dashboard-shell-offset: calc(var(--highdmin-sidenav-width-sm) + 12px);
}

html[data-sidenav-size="full"]:not([data-layout="topnav"]),
html[data-sidenav-size="fullscreen"]:not([data-layout="topnav"]) {
    --dashboard-shell-offset: 12px;
}

.app-topbar {
    background: #ffffff !important;
    padding: 0 !important;
    border-radius: 12px 0 0 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
    min-height: 0 !important;
    margin-left: var(--dashboard-shell-offset) !important;
    margin-right: 0 !important;
    margin-bottom: 12px !important;
}

[data-bs-theme="dark"] .app-topbar {
    background: var(--highdmin-topbar-bg) !important;
}

.page-content {
    margin-left: var(--dashboard-shell-offset) !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.app-topbar .topbar-menu {
    max-width: 100% !important;
    padding: 14px 24px !important;
    min-height: 0;
}

.app-topbar .topbar-menu .topbar-item {
    height: auto !important;
    min-height: 40px;
}

.app-topbar .topbar-menu .topbar-title-group {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 44px;
}

.app-topbar .topbar-menu .topbar-title-group .page-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--bs-body-color);
    white-space: nowrap;
}

.app-topbar .topbar-menu .topbar-title-group .breadcrumb {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.2;
    color: var(--bs-secondary-color);
    display: flex;
    align-items: center;
}

.app-topbar .topbar-menu .topbar-title-group .breadcrumb-item,
.app-topbar .topbar-menu .topbar-title-group .breadcrumb-item a {
    color: var(--bs-secondary-color);
    text-decoration: none;
    line-height: 1.2;
}

.app-topbar .topbar-menu .topbar-title-group .breadcrumb-item.active {
    color: var(--bs-body-color);
    font-weight: 600;
}

.app-topbar .topbar-menu .topbar-title-group .breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: var(--bs-secondary-color);
    padding: 0 8px;
    font-size: 18px;
    line-height: 1;
}

.app-topbar .topbar-moduls-wrap {
    max-width: 100% !important;
    padding: 0 16px !important;
    border-top: 1px solid var(--bs-border-color, rgba(0, 0, 0, 0.06));
}

.topbar-moduls-row {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 8px 0;
    gap: 4px;
}

.topbar-modul-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: var(--bs-secondary-color);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    background: transparent;
    border-radius: 999px;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.topbar-modul-link:hover {
    color: var(--bs-body-color);
    background-color: rgba(0, 0, 0, 0.03);
}

.topbar-modul-link.active {
    color: var(--bs-body-color);
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.06);
}

.topbar-modul-link i {
    font-size: 20px;
    line-height: 1;
    opacity: 0.9;
}

.topbar-modul-divider {
    width: 1px;
    align-self: stretch;
    background-color: var(--bs-border-color, rgba(0, 0, 0, 0.08));
    margin: 8px 4px;
}

.app-topbar .topbar-search {
    width: 360px;
    max-width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
}

@media (min-width: 1400px) {
    .app-topbar .topbar-search {
        width: 440px;
    }
}

.theme-toggle-pill {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    background-color: var(--highdmin-topbar-search-bg);
    border-radius: 999px;
    border: none;
    cursor: pointer;
}

.theme-toggle-pill .theme-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    color: var(--highdmin-topbar-item-color);
    font-size: 16px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

html[data-bs-theme="light"] .theme-toggle-pill .theme-toggle-icon.is-light,
html:not([data-bs-theme="dark"]) .theme-toggle-pill .theme-toggle-icon.is-light {
    background-color: #ffffff;
    color: #f59e0b;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

html[data-bs-theme="dark"] .theme-toggle-pill .theme-toggle-icon.is-dark {
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

html[data-bs-theme="dark"] .theme-toggle-pill #light-dark-mode .ri-moon-line::before,
html[data-bs-theme="dark"] .app-topbar #light-dark-mode .ri-moon-line::before {
    content: "\ef75" !important;
}

/* Login page */
.login-page-shell {
    background-color: var(--itbs-login-surface);
}

.login-page-hero-overlay {
    height: 240px;
    background: linear-gradient(180deg, rgba(var(--itbs-login-surface-rgb), 0.98) 0%, rgba(var(--itbs-login-surface-rgb), 0.78) 45%, rgba(var(--itbs-login-surface-rgb), 0) 100%);
}

.login-page-hero-content {
    max-width: 560px;
}

.login-page-hero-logo {
    width: 17vw;
    max-width: 48%;
}

.login-page-hero-title {
    font-weight: 800;
    color: var(--bs-primary);
    letter-spacing: 0.7px;
    font-size: clamp(1.3rem, 3.3vw, 2.3rem);
}

.login-page-hero-subtitle {
    max-width: 540px;
    color: var(--itbs-login-hero-subtitle);
    font-size: clamp(1.4rem, 1.35vw, 1.3rem);
    line-height: 1.32;
}

.login-page-form-panel {
    background-color: var(--bs-primary);
}

.login-form .btn-primary {
    --highdmin-btn-bg: var(--bs-warning);
    --highdmin-btn-border-color: var(--bs-warning);
    --highdmin-btn-hover-bg: var(--itbs-warning-hover);
    --highdmin-btn-hover-border-color: var(--itbs-warning-hover);
    --highdmin-btn-active-bg: var(--itbs-warning-hover);
    --highdmin-btn-active-border-color: var(--itbs-warning-hover);
    background-color: var(--bs-warning);
    border-color: var(--bs-warning);
}

.login-form .form-control:focus,
.login-form .form-check-input:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 .25rem var(--bs-focus-ring-color);
}

.login-form .form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.login-page-mobile-logo-wrap {
    background-color: var(--itbs-login-surface);
}

.login-page-mobile-logo {
    width: 240px;
    max-width: 100%;
    height: auto;
}

.login-page-mobile-title {
    font-size: 1.8rem;
}

@media (min-width: 992px) {
    .login-page-form-title {
        font-size: 2.3rem;
        line-height: 1.08;
    }

    .login-page-form-subtitle {
        font-size: 1.18rem !important;
        line-height: 1.45;
        font-weight: 400;
        margin-bottom: 3vh;
    }
}

@media (max-width: 991.98px) {
    .login-page-shell,
    .login-page-shell > .row,
    .login-page-form-panel {
        min-height: 100dvh !important;
    }

    .login-page-form-panel {
        padding: 0 !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
    }

    .login-page-form-panel > .row {
        min-height: 100dvh;
        margin-right: 0;
        margin-left: 0;
        align-items: stretch;
    }

    .login-mobile-landing {
        min-height: 100dvh;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .login-mobile-landing-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .login-mobile-landing-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(var(--itbs-login-surface-rgb), 0.98) 0%, rgba(var(--itbs-login-surface-rgb), 0.82) 44%, rgba(var(--bs-primary-rgb), 0.15) 100%);
    }

    .login-mobile-landing-content {
        position: relative;
        z-index: 1;
        width: 100%;
        max-width: 460px;
        padding: 2rem 2rem 2.5rem;
        margin-top: 2.5rem;
    }

    .login-page-mobile-landing-title {
        color: var(--bs-primary);
        font-size: 1.9rem;
        line-height: 1.18;
    }

    .login-page-mobile-landing-subtitle {
        color: var(--itbs-login-text-muted);
        font-size: 1.2rem;
        line-height: 1.35;
        max-width: 92%;
    }

    .login-mobile-open-form-btn {
        border-radius: 1rem;
        background-color: var(--bs-primary) !important;
        border-color: var(--bs-primary) !important;
        margin-top: clamp(2rem, 28vh, 12rem);
    }

    .login-mobile-open-form-btn:hover,
    .login-mobile-open-form-btn:focus {
        background-color: var(--itbs-primary-hover) !important;
        border-color: var(--itbs-primary-hover) !important;
    }

    .login-mobile-form-container {
        display: none;
        min-height: 100dvh;
        padding: max(1.25rem, env(safe-area-inset-top)) 1.25rem max(1.5rem, env(safe-area-inset-bottom));
        overflow-y: auto;
    }

    .login-mobile-form-container.is-active {
        display: block;
    }

    .login-mobile-back-btn {
        text-decoration: none;
        opacity: 0.92;
    }
}

/* User dropdown menu */
.user-menu-dropdown {
    min-width: 260px;
    border: none;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 14px 36px rgba(17, 24, 39, 0.16);
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 10px;
    color: #515267;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 8px;
}

.user-menu-item i {
    font-size: 22px;
    line-height: 1;
}

.user-menu-item:hover,
.user-menu-item:focus {
    background-color: #f3f4f6;
    color: #3f4157;
}

.user-menu-icon-wrap {
    position: relative;
    display: inline-flex;
}

.user-menu-dot {
    position: absolute;
    top: 1px;
    right: -1px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background-color: #f59e0b;
}

.user-menu-divider {
    margin: 10px 0;
    border-top-color: #e5e7eb;
}

.user-menu-logout {
    color: #e35f7a;
    font-size: 17px;
    font-weight: 700;
}

.user-menu-logout i {
    font-size: 24px;
}

.user-menu-logout:hover,
.user-menu-logout:focus {
    background-color: #fff1f4;
    color: #d84e6f;
}


.extension-worker-summary,
.employment-rights-summary {
    background-color: var(--highdmin-body-bg);
    margin: -8px;
    padding: 10px;
}

.dashboard-summary-card {
    min-height: 72px;
    height: 100%;
    background-color: var(--highdmin-secondary-bg);
    border: 1px solid var(--highdmin-border-color);
    border-radius: 4px;
    box-shadow: none;
}

.dashboard-summary-card .summary-content {
    height: 100%;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 18px;
}

.dashboard-summary-card .summary-copy {
    min-width: 0;
}

.dashboard-summary-card .summary-label {
    color: var(--highdmin-body-color);
    font-size: 11px;
    line-height: 1.25;
    margin-bottom: 5px;
}

.dashboard-summary-card .summary-value {
    color: var(--highdmin-emphasis-color);
    font-size: 24px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
}

.dashboard-summary-card .summary-trend {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: #98a2b3;
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
}

.dashboard-summary-card .summary-trend-value {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-weight: 600;
}

.dashboard-summary-card .summary-trend-value iconify-icon {
    font-size: 11px;
}

.dashboard-summary-card .summary-trend.is-up .summary-trend-value {
    color: #22c55e;
}

.dashboard-summary-card .summary-trend.is-down .summary-trend-value {
    color: #fb5c7c;
}

.dashboard-summary-card .summary-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 27px;
}

.dashboard-summary-card .summary-icon.is-green {
    background-color: #ccfbec;
    color: #14cfa4;
}

.dashboard-summary-card .summary-icon.is-blue {
    background-color: #d7f4ff;
    color: #41a8d5;
}

.dashboard-summary-card .summary-icon.is-purple {
    background-color: #f3dcff;
    color: #b75de2;
}

.dashboard-summary-card .summary-icon.is-yellow {
    background-color: #fff2c8;
    color: #f6b400;
}

.dashboard-summary-card .summary-icon.is-pink {
    background-color: #ffe1e7;
    color: #ed5d73;
}


.service-request-page {
    background-color: #f1f4f7;
    margin: -8px;
    min-height: calc(100vh - 140px);
    padding: 10px;
}

.service-request-hero {
    min-height: 224px;
    border-radius: 12px;
    background-color: #4ccfc5;
    background-position: center;
    background-size: cover;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 28px 32px;
}

.service-request-hero__logo {
    width: 76px;
    height: auto;
    display: block;
}

.service-request-hero__content {
    width: min(520px, 100%);
    margin: 28px auto 0;
    text-align: center;
}

.service-request-hero h1 {
    color: #ffffff;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
}

.service-request-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin-bottom: 18px;
}

.service-request-filter {
    width: min(490px, 100%);
    height: 34px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 999px;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(15, 82, 90, 0.08);
}

.service-request-filter__select,
.service-request-filter__input {
    height: 100%;
    border: 0;
    background-color: transparent;
    color: #667085;
    font-size: 11px;
    outline: 0;
}

.service-request-filter__select-wrap {
    width: 142px;
    height: 100%;
    border-right: 1px solid #e5e9ef;
    flex-shrink: 0;
}

.service-request-filter__select {
    width: 142px;
    padding: 0 18px;
    border-right: 1px solid #e5e9ef;
}

.service-request-filter__select-wrap > div,
.service-request-filter__select-wrap .select2-container {
    width: 100% !important;
    height: 100%;
}

.service-request-filter__select-wrap .select2-container--default .select2-selection--single {
    height: 100%;
    min-height: 0;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
}

.service-request-filter__select-wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #667085;
    font-size: 12px;
    line-height: normal;
    padding-left: 18px;
    padding-right: 30px;
    text-align: left;
}

.service-request-filter__select-wrap .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 10px;
}

.service-request-filter__search {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
}

.service-request-filter__search iconify-icon {
    color: #98a2b3;
    font-size: 16px;
    flex-shrink: 0;
}

.service-request-filter__input {
    width: 100%;
}

.service-request-section {
    margin-top: 24px;
}

.service-request-section__title {
    color: #4b5563;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-request-card {
    height: 100%;
    min-height: 170px;
    background-color: #ffffff;
    border: 1px solid #e9eef3;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    padding: 16px 18px 14px;
}

.service-request-card__head {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    margin-bottom: 16px;
}

.service-request-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 42px;
}

.service-request-card__icon img{
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

.service-request-card__icon.is-blue {
    background-color: #e1f3ff;
    color: #3b9bd7;
}

.service-request-card__icon.is-green {
    background-color: #def8ec;
    color: #22a86b;
}

.service-request-card__icon.is-yellow {
    background-color: #fff2cc;
    color: #e7a800;
}

.service-request-card__icon.is-orange {
    background-color: #ffe9d6;
    color: #ef7d21;
}

.service-request-card__icon.is-red {
    background-color: #ffe4e7;
    color: #e43f55;
}

.service-request-card__icon.is-purple {
    background-color: #f1e4ff;
    color: #8d5fd3;
}

.service-request-card h3 {
    color: #344054;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0;
}

.service-request-card p {
    color: #667085;
    font-size: 12px;
    line-height: 1.45;
    margin-bottom: 16px;
    flex: 1;
}

.service-request-card__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.service-request-card__button {
    min-height: 34px;
    background-color: #f5f7fb;
    border: 1px solid #f0f3f7;
    border-radius: 2px;
    color: #667085;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    padding: 8px 10px;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.service-request-card__button:hover {
    background-color: #edf7fb;
    color: #2596d6;
}

.service-request-empty {
    display: none;
    background-color: #ffffff;
    border: 1px solid #e9eef3;
    border-radius: 6px;
    color: #667085;
    font-size: 13px;
    padding: 18px;
    text-align: center;
}

@media (max-width: 575.98px) {
    .service-request-hero {
        min-height: auto;
        padding: 18px 10px 22px;
        background-position: center top;
        border-radius: 10px;
    }

    .service-request-hero__logo {
        width: 64px;
        margin: 0 auto;
    }

    .service-request-hero__content {
        width: 100%;
        margin-top: 18px;
    }

    .service-request-hero h1 {
        font-size: 22px;
        line-height: 1.25;
        margin-bottom: 8px;
    }

    .service-request-hero p {
        font-size: 13px;
        line-height: 1.4;
        margin-bottom: 14px;
    }

    .service-request-filter {
        width: 100%;
        max-width: none;
        height: auto;
        border-radius: 12px;
        flex-direction: column;
        align-items: stretch;
        overflow: hidden;
    }

    .service-request-filter__select {
        width: 100%;
        height: 44px;
        min-height: 44px;
        border-right: 0;
        border-bottom: 1px solid #e5e9ef;
        padding: 0 14px;
        font-size: 12px;
    }

    .service-request-filter__select-wrap {
        width: 100%;
        height: 44px;
        min-height: 44px;
        border-right: 0;
        border-bottom: 1px solid #e5e9ef;
    }

    .service-request-filter__select-wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
        padding-left: 18px;
        padding-right: 34px;
    }

    .service-request-filter__search {
        height: 58px;
        min-height: 58px;
        padding: 0 16px;
        gap: 10px;
    }

    .service-request-filter__search iconify-icon {
        font-size: 20px;
    }

    .service-request-filter__input {
        height: 100%;
        font-size: 12px;
        line-height: 1.4;
    }
}
