.df-account-page,
.df-dashboard-page {
    box-sizing: border-box;
    width: 100%;
    min-height: calc(100vh - 74px);
    padding: 112px var(--space-lg) 64px;
    background:
        linear-gradient(180deg, rgba(255, 250, 246, .92), rgba(255, 243, 233, 1) 44%),
        var(--color-page-bg);
    overflow-x: clip;
}

.df-account-page *,
.df-account-page *::before,
.df-account-page *::after,
.df-dashboard-page *,
.df-dashboard-page *::before,
.df-dashboard-page *::after {
    box-sizing: border-box;
}

.df-host-dashboard-page {
    box-sizing: border-box;
    width: 100%;
    padding: 96px var(--space-lg) 56px;
    overflow-x: hidden;
}

.df-host-dashboard-shell {
    display: grid;
    grid-template-columns: 292px minmax(0, 1fr);
    gap: 22px;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    align-items: start;
    min-width: 0;
}

.df-host-dashboard-main {
    display: grid;
    grid-column: 2;
    gap: 16px;
    min-width: 0;
    max-width: 100%;
}

.df-rtl .df-dashboard-page {
    direction: ltr;
}

.df-rtl .df-dashboard-page :where(.df-host-topbar, .df-host-welcome, .df-host-section, .df-host-sidebar, .df-dashboard-card, .df-dashboard-booking, .df-renter-trip-card, .df-renter-detail, .df-host-submit-form, .df-host-calendar-layout, .df-calendar-detail, .df-calendar-management, .df-host-block-form) {
    direction: rtl;
}

.df-rtl .df-dashboard-page :where(input, select, textarea) {
    text-align: right;
}

.df-rtl .df-dashboard-page :where(input[type="email"], input[type="url"], input[type="tel"], input[type="number"], input[type="date"], input[type="time"]) {
    direction: ltr;
    text-align: left;
}

.df-rtl .df-dashboard-page :where(.df-calendar-detail-titleline, .df-calendar-detail-hero, .df-calendar-detail-subline small, .df-calendar-booker-card, .df-calendar-booking-dl div, .df-calendar-quick-grid a, .df-calendar-status-actions a, .df-host-topbar-main) {
    direction: rtl;
}

.df-host-topbar {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 12px;
    min-height: 38px;
}

.df-host-topbar-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 38px;
}

.df-host-topbar a,
.df-support-switcher summary {
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.df-support-switcher-shell {
    position: relative;
    display: flex;
    align-items: stretch;
    width: min(380px, calc(100vw - 32px));
    min-height: 38px;
    border: 1px solid rgba(45, 28, 15, .12);
    border-radius: 999px;
    background: rgba(255, 250, 246, .92);
}

.df-support-switcher {
    position: static;
    flex: 1 1 auto;
    min-width: 0;
}

.df-support-switcher-shell.is-active .df-support-switcher,
.df-support-switcher-shell.is-open .df-support-switcher {
    flex: 1 1 calc(100% - 78px);
    max-width: calc(100% - 78px);
}

.df-support-switcher-shell.is-active .df-support-switcher summary {
    cursor: default;
}

.df-support-switcher summary {
    display: inline-flex;
    align-items: center;
    width: 100%;
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px 0 0 999px;
    background: transparent;
    color: var(--color-primary-dark);
    cursor: pointer;
    list-style: none;
}

.df-support-switcher:not([open]) summary {
    border-radius: 999px;
}

.df-support-switcher-shell.is-active .df-support-switcher:not([open]) summary {
    border-radius: 999px 0 0 999px;
}

.df-support-switcher summary span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.df-support-switcher-search {
    display: none;
    position: absolute;
    inset: 0 auto 0 0;
    width: 100%;
    min-width: 0;
    height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--color-text);
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    outline: 0;
}

.df-support-switcher-search::-webkit-search-decoration,
.df-support-switcher-search::-webkit-search-cancel-button,
.df-support-switcher-search::-webkit-search-results-button,
.df-support-switcher-search::-webkit-search-results-decoration {
    display: none;
    -webkit-appearance: none;
}

.df-support-switcher-search::-ms-clear,
.df-support-switcher-search::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

.df-support-switcher[open] summary {
    display: none;
}

.df-support-switcher[open] .df-support-switcher-search {
    display: block;
}

.df-support-switcher-shell.is-active .df-support-switcher-search {
    width: 100%;
    border-radius: 999px 0 0 999px;
}

.df-support-switcher summary::-webkit-details-marker {
    display: none;
}

.df-support-switcher-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: min(380px, calc(100vw - 32px));
    max-height: 70vh;
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 12px;
    border: 1px solid rgba(45, 28, 15, .12);
    border-radius: 8px;
    background: rgba(255, 250, 246, .98);
    box-shadow: var(--shadow-card);
}

.df-support-switcher-stop {
    display: inline-flex;
    flex: 0 0 78px;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 12px;
    border: 0;
    border-left: 1px solid rgba(45, 28, 15, .12);
    border-radius: 0 999px 999px 0;
    background: rgba(255, 255, 255, .34);
    color: var(--color-primary-dark);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
    outline: 0;
    box-shadow: none;
}

.df-support-switcher-stop[hidden] {
    display: none;
}

.df-support-switcher-shell:not(.is-open):not(.is-active) .df-support-switcher-stop {
    display: none;
}

.df-support-switcher-stop:focus-visible {
    outline: 2px solid rgba(190, 125, 78, .38);
    outline-offset: -3px;
}

.df-support-switcher-stop:hover {
    background: rgba(255, 255, 255, .54);
    color: var(--color-text);
    text-decoration: none;
}

.df-support-switcher-current {
    display: grid;
    flex: 0 0 auto;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(45, 28, 15, .10);
    border-radius: 8px;
    background: rgba(255, 255, 255, .58);
}

.df-support-switcher-current span,
.df-support-switcher-results a span,
.df-support-switcher-results a small,
.df-support-switcher-empty {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 800;
}

.df-support-switcher-current strong,
.df-support-switcher-results a strong {
    color: var(--color-text);
    font-size: 14px;
    line-height: 1.2;
}

.df-support-switcher-current a {
    width: fit-content;
    margin-top: 4px;
    color: var(--color-primary-dark);
}

.df-support-switcher-results {
    display: grid;
    flex: 0 0 auto;
    gap: 6px;
    max-height: none;
    min-height: 0;
    overflow: visible;
    padding-right: 2px;
}

.df-support-switcher-results a {
    display: grid;
    gap: 3px;
    padding: 10px;
    border: 1px solid rgba(45, 28, 15, .10);
    border-radius: 8px;
    background: rgba(255, 255, 255, .54);
    color: var(--color-text);
    text-decoration: none;
}

.df-support-switcher-results a:hover {
    border-color: var(--color-primary);
    background: #fff;
    text-decoration: none;
}

.df-support-switcher-empty {
    margin: 0;
    padding: 10px;
    border: 1px dashed rgba(45, 28, 15, .16);
    border-radius: 8px;
}

.df-host-topbar a:hover {
    color: var(--color-text);
    text-decoration: underline;
}

.df-host-topbar .df-host-backend-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(45, 28, 15, .12);
    border-radius: 999px;
    background: rgba(255, 250, 246, .92);
    color: var(--color-primary-dark);
    text-decoration: none;
}

.df-host-topbar .df-host-backend-link:hover {
    background: rgba(255, 250, 246, 1);
    color: var(--color-text);
    text-decoration: none;
}

.df-host-topbar .df-host-notification {
    position: relative;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(45, 28, 15, .12);
    border-radius: 50%;
    background: rgba(255, 250, 246, .92);
    color: var(--color-text);
    font-weight: 900;
    text-decoration: none;
}

.df-host-topbar .df-host-notification::before {
    content: "";
    width: 12px;
    height: 14px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 9px 9px 4px 4px;
}

.df-host-topbar .df-host-notification span {
    position: absolute;
    top: -5px;
    right: -5px;
    display: grid;
    place-items: center;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff;
    font-size: 11px;
    line-height: 1;
}

.df-host-topbar .df-host-notification:hover {
    background: rgba(255, 250, 246, 1);
    color: var(--color-text);
    text-decoration: none;
}

.df-host-topbar-actions {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.df-host-topbar-actions a,
.df-host-topbar-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(45, 28, 15, .12);
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.df-host-topbar-actions a:first-child {
    background: rgba(255, 255, 255, .58);
    color: var(--color-text);
}

.df-host-topbar-actions a:hover,
.df-host-topbar-actions button:hover {
    background: var(--color-primary-dark);
    color: #fff;
    text-decoration: none;
}

.df-host-topbar-inline-notice {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.df-account-notice.is-compact {
    margin: 0;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
}
