/* OfficePro Tippcom-inspired app shell */
:root {
    --op-bg: #071018;
    --op-bg-2: #0B1721;
    --op-panel: #121F2B;
    --op-panel-2: #182837;
    --op-panel-3: #203547;
    --op-line: #2C4356;
    --op-line-soft: rgba(103, 181, 222, .22);
    --op-text: #F7FBFF;
    --op-muted: #A7B7C8;
    --op-muted-2: #7890A5;
    --op-navy: #09275F;
    --op-blue: #0876D8;
    --op-cyan: #129DE8;
    --op-cyan-2: #6DD2FF;
    --op-success: #35C58A;
    --op-warning: #F0B429;
    --op-danger: #F05F70;
    --op-radius: 8px;
    --op-shadow: 0 18px 42px rgba(0, 0, 0, .28);
    --op-sidebar-width: 240px;
    --op-header-height: 58px;
}

html,
body {
    min-height: 100%;
    background: var(--op-bg);
}

body.officepro-dark {
    margin: 0;
    color: var(--op-text);
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    background:
        radial-gradient(circle at 80% -10%, rgba(18, 157, 232, .14), transparent 28%),
        linear-gradient(180deg, #0B1620 0%, #071018 48%, #050B11 100%);
}

body.officepro-dark::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(109, 210, 255, .035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(109, 210, 255, .035) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: .55;
    z-index: -1;
}

body.officepro-dark a {
    color: inherit;
}

.officepro-app {
    min-height: 100vh;
}

.officepro-sidebar {
    position: fixed;
    z-index: 1040;
    top: var(--op-header-height);
    left: 0;
    width: var(--op-sidebar-width);
    height: calc(100vh - var(--op-header-height));
    padding: 14px 10px 18px;
    background: #121D27;
    border-right: 1px solid var(--op-line);
    overflow-y: auto;
    transition: transform .18s ease;
}

.officepro-shell {
    min-height: 100vh;
    padding-left: var(--op-sidebar-width);
    padding-top: var(--op-header-height);
    transition: padding-left .18s ease;
}

.officepro-header {
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    right: 0;
    height: var(--op-header-height);
    background: #091725;
    border-bottom: 1px solid var(--op-line);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.officepro-topbar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 10px;
}

.officepro-topbar-left,
.officepro-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.officepro-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    color: var(--op-text);
    text-decoration: none;
}

.officepro-brand:hover {
    color: var(--op-text);
    text-decoration: none;
}

.officepro-brand-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: var(--op-radius);    
    border: 1px solid var(--op-line);
    background-color: #0F1B28;
}

.officepro-brand-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.officepro-brand-text img {
    width: 97px;
    height: 32px;
    object-fit: contain;
}

.officepro-menu-toggle a,
.officepro-close-menu-button a,
.dynamic-add-button .officepro-header-add-button,
.officepro-panel-add-button {
    min-width: 42px;
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--op-line);
    border-radius: var(--op-radius);
    background: #172635 !important;
    color: var(--op-text) !important;
    text-decoration: none;
    appearance: none;
    line-height: 1;
    box-shadow: none !important;
}

.officepro-menu-toggle a:hover,
.officepro-close-menu-button a:hover,
.dynamic-add-button .officepro-header-add-button:hover,
.officepro-panel-add-button:hover,
.officepro-panel-add-button:focus {
    border-color: rgba(109, 210, 255, .55);
    background: #193145 !important;
    color: var(--op-text) !important;
}

.officepro-menu-toggle img,
.dynamic-add-button img {
    filter: brightness(0) saturate(100%) invert(75%) sepia(42%) saturate(1044%) hue-rotate(166deg) brightness(102%) contrast(101%);
}

.officepro-panel-add-button i {
    color: var(--op-cyan-2);
    font-size: 22px;
    line-height: 1;
}

.officepro-panel-add-button:disabled {
    cursor: not-allowed;
    opacity: .45;
}

.dynamic-add-button {
    position: static !important;
    top: auto !important;
    left: auto !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    height: 42px !important;
    margin: 0 8px 0 0;
}

@media (min-width: 901px) {
    body.officepro-nav-collapsed .officepro-sidebar {
        transform: translateX(-100%);
    }

    body.officepro-nav-collapsed .officepro-shell {
        padding-left: 0;
    }
}

.top-nav-user-container img,
.top-nav-user-container-with-comp img {
    filter: brightness(0) saturate(100%) invert(75%) sepia(42%) saturate(1044%) hue-rotate(166deg) brightness(102%) contrast(101%);
}

.officepro-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.officepro-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 12px;
    border-radius: var(--op-radius);
    color: var(--op-muted);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background .16s ease, color .16s ease, transform .16s ease;
}

.officepro-nav-item:hover {
    color: var(--op-text);
    background: rgba(18, 157, 232, .12);
    text-decoration: none;
}

.officepro-nav-item.active {
    color: #fff;
    background: linear-gradient(90deg, rgba(18, 157, 232, .25), rgba(18, 60, 134, .56));
    box-shadow: inset 3px 0 0 var(--op-cyan);
}

.officepro-nav-icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: var(--op-radius);
    background: rgba(18, 157, 232, .10);
}

.officepro-nav-icon img {
    filter: brightness(0) saturate(100%) invert(75%) sepia(42%) saturate(1044%) hue-rotate(166deg) brightness(102%) contrast(101%);
}

.officepro-sidebar-backdrop {
    display: none;
}

.officepro-main {
    padding: 28px 16px 40px;
}

.pms_content_header,
.report-header-container {
    margin: 0 0 16px;
    padding: 0;
    background: transparent !important;
}

.pms_content_header_box,
.report-header__wrap {
    position: relative;
    min-height: 138px;
    padding: 24px;
    border: 1px solid var(--op-line);
    border-radius: var(--op-radius);
    background: linear-gradient(145deg, var(--op-panel), #1C2D3C);
    box-shadow: var(--op-shadow);
}

.pms_header_title,
.report-header__title {
    color: var(--op-text) !important;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0;
}

.pms-breadcrumb .breadcrumb-item,
.pms-breadcrumb .breadcrumb-item a,
.report-header__label,
.status_color_dark_grey,
.text-muted {
    color: var(--op-muted) !important;
}

.pms-breadcrumb .breadcrumb-item.active,
.pms-breadcrumb .breadcrumb-item.active a {
    color: var(--op-cyan-2) !important;
}

.pms_content {
    margin: 0 0 22px;
    padding: 18px;
    border: 1px solid var(--op-line);
    border-radius: var(--op-radius);
    background: var(--op-panel);
    box-shadow: var(--op-shadow);
}

.portal_tiles_wrap {
    padding: 0;
}

.portal_tile_link {
    color: inherit;
    text-decoration: none !important;
}

.portal_tile_card {
    min-height: 160px;
    border: 1px solid var(--op-line) !important;
    border-radius: var(--op-radius) !important;
    background: linear-gradient(145deg, var(--op-panel), #1C2D3C) !important;
    color: var(--op-text);
    box-shadow: var(--op-shadow);
    overflow: hidden;
    transition: border-color .16s ease, transform .16s ease, background .16s ease;
}

.portal_tile_card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--op-cyan), var(--op-blue));
}

.portal_tile_card::after {
    display: none;
}

.portal_tile_hover:hover {
    transform: translateY(-2px);
    border-color: rgba(109, 210, 255, .55) !important;
    background: linear-gradient(145deg, #1A2B3B, #203547) !important;
}

.portal_tile_body {
    padding: 24px;
}

.portal_tile_icon_wrap {
    width: 44px;
    height: 44px;
    border: 1px solid var(--op-line-soft) !important;
    border-radius: var(--op-radius);
    background: rgba(18, 157, 232, .14) !important;
}

.portal_tile_icon {
    filter: brightness(0) saturate(100%) invert(75%) sepia(42%) saturate(1044%) hue-rotate(166deg) brightness(102%) contrast(101%);
}

.portal_tile_title {
    color: var(--op-text) !important;
    font-size: 20px;
    font-weight: 900;
    margin-top: 22px;
}

.btn-oproma,
.btn-oproma.show,
.btn-nav {
    border: 1px solid rgba(109, 210, 255, .38) !important;
    border-radius: var(--op-radius) !important;
    background: linear-gradient(145deg, #123C86, #129DE8) !important;
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(18, 157, 232, .18) !important;
    font-weight: 850 !important;
}

.btn-oproma:hover,
.btn-oproma:focus,
.btn-nav:hover,
.btn-nav:focus {
    background: linear-gradient(145deg, #129DE8, #0B5EB8) !important;
    color: #fff !important;
}

.form-control,
.form-select,
.bootstrap-select > .dropdown-toggle,
.input-group-text,
.oproma-label {
    min-height: 38px;
    border: 1px solid var(--op-line) !important;
    border-radius: var(--op-radius) !important;
    background-color: #0F1A24 !important;
    color: var(--op-text) !important;
}

.form-control::placeholder {
    color: var(--op-muted-2);
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(109, 210, 255, .72) !important;
    box-shadow: 0 0 0 .18rem rgba(18, 157, 232, .14) !important;
}

.input-group-text,
.oproma-label {
    background: #172635 !important;
    color: var(--op-cyan-2) !important;
    font-weight: 800;
}

.table,
.dataTable {
    --bs-table-bg: #0F1A24;
    --bs-table-color: var(--op-text);
    --bs-table-hover-bg: rgba(18, 157, 232, .10);
    --bs-table-hover-color: var(--op-text);
    --bs-table-accent-bg: transparent;
    color: var(--op-text) !important;
}

.table.dataTable,
.dataTable {
    width: 100% !important;
    border: 1px solid var(--op-line) !important;
    border-radius: var(--op-radius);
    overflow: visible;
    background: #0F1A24 !important;
}

.dataTables_wrapper,
.dataTables_scroll,
.dataTables_scrollBody {
    overflow: visible !important;
}

.table.dataTable .dropdown,
.table.dataTable .dropdown-menu,
.dataTable .dropdown,
.dataTable .dropdown-menu {
    z-index: 1080;
}

.table-bordered > :not(caption) > * {
    border-width: 0;
}

.table.dataTable thead th,
.dataTable thead th {
    background: #172635 !important;
    color: var(--op-cyan-2) !important;
    border-color: var(--op-line) !important;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.table.dataTable tbody td,
.dataTable tbody td {
    background: transparent !important;
    border-color: rgba(44, 67, 86, .72) !important;
    vertical-align: middle;
}

.table.dataTable tbody tr:hover,
.dataTable tbody tr:hover,
table.dataTable > tbody > tr:hover {
    --bs-table-accent-bg: rgba(18, 157, 232, .10) !important;
    --bs-table-hover-bg: rgba(18, 157, 232, .10) !important;
    background-color: rgba(18, 157, 232, .10) !important;
}

.table.dataTable tbody tr:hover > td,
.table.dataTable tbody tr:hover > th,
.dataTable tbody tr:hover > td,
.dataTable tbody tr:hover > th,
table.dataTable.hover tbody tr:hover > *,
table.dataTable.display tbody tr:hover > *,
table.dataTable > tbody > tr:hover > *,
.table-hover > tbody > tr:hover > * {
    --bs-table-accent-bg: rgba(18, 157, 232, .10) !important;
    --bs-table-hover-bg: rgba(18, 157, 232, .10) !important;
    background-color: rgba(18, 157, 232, .10) !important;
    box-shadow: inset 0 0 0 9999px rgba(18, 157, 232, .10) !important;
    color: var(--op-text) !important;
}

.table.dataTable tbody a,
.dataTable tbody a {
    color: inherit;
    text-decoration: none;
}

.dt-filters input,
.dt-filters select {
    min-height: 32px;
    background: #0B141D !important;
}

.badge {
    border-radius: var(--op-radius);
    padding: .42rem .66rem;
    font-weight: 850;
}

.badge.bg-warning {
    background-color: rgba(18, 157, 232, .16) !important;
    color: var(--op-cyan-2) !important;
    border: 1px solid rgba(109, 210, 255, .32);
}

.badge.bg-success {
    background-color: rgba(53, 197, 138, .14) !important;
    color: #7BE2B4 !important;
    border: 1px solid rgba(53, 197, 138, .35);
}

.badge.bg-secondary {
    background-color: rgba(167, 183, 200, .12) !important;
    color: var(--op-muted) !important;
    border: 1px solid rgba(167, 183, 200, .24);
}

.pms_tabs {
    margin: 0 0 16px;
    padding: 8px;
    border: 1px solid var(--op-line);
    border-radius: var(--op-radius);
    background: var(--op-panel) !important;
}

.pms_tabs .nav-link {
    border: 0 !important;
    border-radius: var(--op-radius) !important;
    background: transparent !important;
    color: var(--op-muted) !important;
    font-weight: 850;
}

.pms_tabs .nav-link.active {
    color: #fff !important;
    background: linear-gradient(90deg, rgba(18, 157, 232, .26), rgba(18, 60, 134, .58)) !important;
}

.card,
.card-standard,
.document-card-icon,
.report-header__meta,
.invoice-totals-box,
.dropdown-menu {
    border-color: var(--op-line) !important;
    border-radius: var(--op-radius) !important;
    background: var(--op-panel) !important;
    color: var(--op-text) !important;
}

body.officepro-dark .border,
body.officepro-dark .border-top,
body.officepro-dark .border-end,
body.officepro-dark .border-bottom,
body.officepro-dark .border-start,
body.officepro-dark .border-light,
body.officepro-dark .border-white {
    border-color: var(--op-line) !important;
}

body.officepro-dark hr {
    border-color: var(--op-line) !important;
    opacity: 1;
}

body.officepro-dark .rounded-3.border,
body.officepro-dark .border.rounded-3 {
    background: rgba(15, 26, 36, .42);
}

body.officepro-dark .bg-light {
    background-color: #0F1A24 !important;
    color: var(--op-text) !important;
}

body.officepro-dark .bg-light .fw-semibold {
    color: var(--op-text) !important;
}

body.officepro-dark .bg-light .text-muted {
    color: var(--op-muted) !important;
}

.card,
.card-standard,
.invoice-totals-box,
.dropdown-menu {
    box-shadow: var(--op-shadow);
}

.invoice-totals-box {
    width: min(420px, 100%);
    background: #0F1A24 !important;
}

.invoice-totals-row {
    border-bottom-color: rgba(44, 67, 86, .72) !important;
}

.invoice-totals-label {
    color: var(--op-muted) !important;
}

.invoice-totals-value {
    color: var(--op-text) !important;
}

.invoice-totals-row-final {
    margin: 8px -10px -8px;
    padding: 12px 10px;
    border: 1px solid rgba(109, 210, 255, .34);
    border-radius: var(--op-radius);
    background: linear-gradient(90deg, rgba(18, 157, 232, .22), rgba(9, 39, 95, .62));
}

.invoice-totals-row-final .invoice-totals-label,
.invoice-totals-row-final .invoice-totals-value {
    color: #fff !important;
}

#toastPlacement {
    top: calc(var(--op-header-height) + 16px) !important;
    right: 16px !important;
    left: calc(var(--op-sidebar-width) + 16px) !important;
    z-index: 3000 !important;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    pointer-events: none;
}

body.officepro-nav-collapsed #toastPlacement {
    left: 16px !important;
}

#toastPlacement .toast {
    width: min(420px, 100%);
    border: 1px solid rgba(109, 210, 255, .36) !important;
    border-radius: var(--op-radius) !important;
    background: #122334 !important;
    color: var(--op-text) !important;
    box-shadow: var(--op-shadow) !important;
    pointer-events: auto;
}

#toastPlacement .toast-body {
    color: var(--op-text) !important;
    font-size: 14px;
    font-weight: 800;
    background: transparent !important;
}

#toastPlacement .toast.show,
#toastPlacement .toast.showing {
    background: linear-gradient(135deg, #122334 0%, #162E42 100%) !important;
}

#toastPlacement .toast[data-oproma-type="1"],
#toastPlacement .toast.toast-success {
    border-color: rgba(53, 197, 138, .48) !important;
}

#toastPlacement .toast[data-oproma-type="2"],
#toastPlacement .toast.toast-info {
    border-color: rgba(109, 210, 255, .48) !important;
}

#toastPlacement .toast[data-oproma-type="3"],
#toastPlacement .toast.toast-warning {
    border-color: rgba(240, 180, 41, .56) !important;
}

#toastPlacement .toast[data-oproma-type="4"],
#toastPlacement .toast.toast-danger {
    border-color: rgba(240, 95, 112, .56) !important;
}

#systemNotificationBox.alert-oproma {
    top: calc(var(--op-header-height) + 18px) !important;
    right: 18px !important;
    left: auto !important;
    transform: none !important;
    z-index: 3000 !important;
    border: 1px solid rgba(109, 210, 255, .36) !important;
    border-radius: var(--op-radius) !important;
    background: linear-gradient(135deg, #122334 0%, #162E42 100%) !important;
    color: var(--op-text) !important;
    box-shadow: var(--op-shadow) !important;
}

#systemNotificationBox,
#systemNotificationBox * {
    color: var(--op-text) !important;
    background-color: transparent !important;
}

#systemNotificationText {
    color: var(--op-text) !important;
    font-size: 14px !important;
    font-weight: 800;
}

.document-card-title {
    color: var(--op-accent) !important;
    font-weight: 800;
}

.report-header__meta .report-header__label {
    color: var(--op-cyan-2) !important;
    font-weight: 800;
}

.report-header__meta .report-header__value {
    color: var(--op-text) !important;
    font-weight: 800;
}

.content_menu {
    position: fixed !important;
    top: calc(var(--op-header-height) + 16px) !important;
    right: 16px !important;
    z-index: 1060;
    width: auto;
    height: auto !important;
}

.content_menu .dropdown-toggle {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--op-line);
    border-radius: var(--op-radius);
    background: #172635;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .20);
}

.content_menu .dropdown-toggle::after {
    display: none;
}

.content_menu .dropdown-toggle:hover,
.content_menu .dropdown-toggle:focus {
    border-color: rgba(109, 210, 255, .55);
    background: #193145;
}

.content_menu .dropdown-toggle img {
    filter: brightness(0) saturate(100%) invert(75%) sepia(42%) saturate(1044%) hue-rotate(166deg) brightness(102%) contrast(101%);
}

.content_menu .dropdown-menu {
    right: 0 !important;
    left: auto !important;
    min-width: 240px;
}

.card-header,
.modal-header,
.modal-footer {
    border-color: var(--op-line) !important;
    background: #172635 !important;
    color: var(--op-text) !important;
}

.modal-content {
    border: 1px solid var(--op-line);
    border-radius: var(--op-radius);
    background: var(--op-panel);
    color: var(--op-text);
}

.dropdown-item {
    color: var(--op-text) !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(18, 157, 232, .14) !important;
    color: #fff !important;
}

.top-nav-user-container,
.top-nav-user-container-with-comp {
    height: 42px !important;
    min-height: 42px !important;
    min-width: 230px !important;
    max-width: 280px !important;
    padding: 0 !important;
    float: none !important;
    border: 1px solid var(--op-line);
    border-radius: var(--op-radius);
    background: #172635;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.officepro-user-menu {
    width: 100%;
    height: 100%;
}

.officepro-user-trigger {
    position: static !important;
    right: auto !important;
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px !important;
    width: 100%;
    padding: 0 10px 0 12px;
    color: var(--op-text);
    text-decoration: none;
}

.officepro-user-trigger:hover,
.officepro-user-trigger:focus {
    color: var(--op-text);
    text-decoration: none;
}

.officepro-user-avatar {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(109, 210, 255, .30);
    border-radius: 50%;
    background: #0F1A24;
}

.officepro-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none !important;
}

.top-nav-user-name-field {
    position: static !important;
    top: auto !important;
    display: block !important;
    min-width: 0;
    flex: 1;
    padding-left: 0 !important;
    color: var(--op-text) !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12.5px;
    font-weight: 850;
    line-height: 1.1;
}

.top-nav-user-container .top-nav-user-name-field,
.top-nav-user-container-with-comp .top-nav-user-name-field {
    position: static !important;
    top: auto !important;
    padding-left: 0 !important;
}

.officepro-user-caret {
    min-width: 20px;
    width: 20px;
    height: 20px;
}

.dropdown-menu-user-nav {
    min-width: 220px;
    margin-top: 8px !important;
    padding: 8px;
    background: #121D27 !important;
}

.dropdown-menu-user-nav .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    border-radius: var(--op-radius);
}

#login-box-container {
    margin-top: clamp(32px, 8vh, 96px);
    padding: 30px 28px;
    border: 1px solid var(--op-line);
    border-radius: var(--op-radius);
    background: linear-gradient(145deg, var(--op-panel), #1C2D3C);
    box-shadow: var(--op-shadow);
}

#login-box-container img[alt="OfficePro"] {
    max-width: 100%;
    height: auto;
}

#login-box-container h3 {
    color: var(--op-text);
    font-size: 22px;
    font-weight: 900;
}

.password-container {
    width: 100%;
}

.toggle-password {
    top: 11px !important;
    right: 12px !important;
}

@media (max-width: 900px) {
    :root {
        --op-sidebar-width: 232px;
    }

    .officepro-sidebar {
        transform: translateX(-100%);
        transition: transform .18s ease;
    }

    body.officepro-nav-open .officepro-sidebar {
        transform: translateX(0);
    }

    .officepro-sidebar-backdrop {
        position: fixed;
        z-index: 1035;
        inset: var(--op-header-height) 0 0;
        display: none;
        border: 0;
        background: rgba(0, 0, 0, .48);
    }

    body.officepro-nav-open .officepro-sidebar-backdrop {
        display: block;
    }

    .officepro-shell {
        padding-left: 0;
    }

    .officepro-brand {
        min-width: auto;
    }

    .officepro-brand-text img {
        width: 132px;
    }

    .top-nav-user-container,
    .top-nav-user-container-with-comp {
        min-width: 178px !important;
        max-width: 220px !important;
    }

    .officepro-main {
        padding: 18px 10px 28px;
    }

    #toastPlacement {
        left: 12px !important;
        right: 12px !important;
        align-items: stretch;
    }

    #toastPlacement .toast {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .officepro-brand-text {
        display: none;
    }

    .officepro-topbar {
        gap: 8px;
    }

    .pms_content_header_box,
    .report-header__wrap {
        min-height: 118px;
        padding: 18px;
    }

    .pms_header_title,
    .report-header__title {
        font-size: 24px;
    }
}
