.df-dashboard-hero {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: end;
    margin-bottom: 24px;
}

.df-dashboard-identity {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.df-dashboard-identity img {
    width: 64px;
    height: 64px;
    border: 2px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.df-dashboard-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.df-dashboard-hero a,
.df-dashboard-card-link {
    color: var(--color-muted);
    font-weight: 800;
    text-decoration: none;
}

.df-dashboard-hero a:hover,
.df-dashboard-card-link:hover {
    color: var(--color-text);
    text-decoration: underline;
}

.df-dashboard-hero .df-dashboard-primary-link {
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--color-primary);
    color: #fff;
    line-height: 20px;
}

.df-dashboard-hero .df-dashboard-primary-link:hover {
    background: var(--color-primary-dark);
    color: #fff;
    text-decoration: none;
}

.df-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.df-dashboard-card {
    padding: 20px;
}

.df-dashboard-card.is-wide {
    grid-column: span 2;
}

.df-dashboard-card.df-profile-card {
    padding: 0;
    overflow: hidden;
}

.df-dashboard-card p {
    margin: 10px 0 0;
    color: var(--color-muted);
    line-height: 1.55;
}

.df-dashboard-card small {
    display: block;
    margin-top: 12px;
    color: var(--color-muted);
    font-weight: 800;
}

.df-dashboard-card-link {
    display: inline-flex;
    margin-top: 14px;
}

.df-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
    padding: 14px 0;
    border-top: 1px solid rgba(45, 28, 15, .10);
    border-bottom: 1px solid rgba(45, 28, 15, .10);
}

.df-dashboard-stat {
    display: grid;
    gap: 2px;
}

.df-dashboard-stat span {
    color: var(--color-muted);
    font-size: 12px;
}

.df-dashboard-stat strong {
    color: var(--color-text);
    font-size: 28px;
    line-height: 1;
}

.df-dashboard-booking-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.df-host-property-list {
    --df-host-property-columns: 76px minmax(180px, 1fr) 120px 92px 130px 96px;
    display: grid;
    gap: 10px;
    max-width: 100%;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.df-staff-user-list {
    --df-host-property-columns: 76px minmax(220px, 1fr) 150px 136px 96px;
}

.df-host-property-head,
.df-host-property {
    display: grid;
    grid-template-columns: var(--df-host-property-columns);
    align-items: center;
    gap: 14px;
    min-width: 764px;
}

.df-host-property-head {
    padding: 0 12px 2px;
    color: var(--color-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.df-host-property {
    padding: 12px;
    border: 1px solid rgba(45, 28, 15, .10);
    border-radius: 8px;
    background: rgba(255, 255, 255, .54);
}

.df-host-property-media {
    display: grid;
    width: 76px;
    height: 64px;
    place-items: center;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(45, 28, 15, .08);
    color: var(--color-muted);
    font-size: 20px;
    font-weight: 900;
}

.df-host-property-media img {
    width: 76px;
    height: 64px;
    object-fit: cover;
}

.df-host-property-main {
    min-width: 0;
}

.df-host-property-main > span {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 800;
}

.df-host-property h3 {
    margin: 4px 0 0;
    overflow: hidden;
    color: var(--color-text);
    font-size: 17px;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.df-host-property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 7px;
    color: var(--color-muted);
    font-size: 13px;
}

.df-host-property-cell {
    color: var(--color-text);
    font-size: 13px;
    font-weight: 850;
    min-width: 0;
}

.df-host-property-head span:nth-child(3),
.df-host-property-head span:nth-child(4),
.df-host-property-head span:nth-child(5),
.df-host-property-cell:nth-of-type(1),
.df-host-property-cell:nth-of-type(2),
.df-host-property-cell:nth-of-type(3) {
    text-align: center;
}

.df-host-property-head span:nth-child(6) {
    text-align: left;
}

.df-host-property-actions,
.df-host-booking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.df-host-booking-actions a {
    min-height: 30px;
    padding: 7px 10px;
    border: 1px solid rgba(45, 28, 15, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .58);
    color: var(--color-text);
    font-size: 12px;
    font-weight: 900;
    line-height: 14px;
    text-decoration: none;
}

.df-host-booking-actions a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-dark);
}

.df-host-property-actions a {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
    transition: color .18s ease;
}

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

.df-staff-edit-button,
.df-staff-user-actions a,
.df-staff-user-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    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-staff-edit-button:hover,
.df-staff-user-actions a:hover,
.df-staff-user-actions button:hover {
    background: var(--color-primary-dark);
    color: #fff;
    text-decoration: none;
}

.df-staff-user-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 14px;
}

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

.df-staff-user-actions a:first-child:hover {
    background: rgba(255, 255, 255, .86);
    color: var(--color-text);
}

.df-staff-user-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 16px;
}

.df-staff-user-tabs a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(45, 28, 15, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .58);
    color: var(--color-text);
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
}

.df-staff-user-tabs a.is-active,
.df-staff-user-tabs a:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #fff;
}

.df-staff-readiness-cell {
    display: flex;
    justify-content: center;
}

.df-staff-readiness-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: -6px 0 12px;
}

.df-staff-readiness-filters a {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    min-height: 30px;
    padding: 0 9px;
    border: 1px solid rgba(45, 28, 15, .10);
    border-radius: 999px;
    background: rgba(255, 255, 255, .56);
    color: var(--color-text);
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}

.df-staff-readiness-filters a:hover,
.df-staff-readiness-filters a.is-active {
    border-color: var(--color-primary);
    background: rgba(195, 133, 77, .14);
    color: var(--color-primary-dark);
}

.df-staff-readiness-filters b {
    display: inline-grid;
    min-width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 999px;
    background: rgba(45, 28, 15, .08);
    color: var(--color-muted);
    font-size: 11px;
    line-height: 1;
}

.df-staff-readiness-filters a.is-active b {
    background: var(--color-primary);
    color: #fff;
}

.df-staff-readiness-badge {
    display: inline-grid;
    min-width: 112px;
    gap: 2px;
    align-content: center;
    justify-items: center;
    min-height: 38px;
    padding: 5px 10px;
    border: 1px solid rgba(45, 28, 15, .10);
    border-radius: 999px;
    background: rgba(255, 255, 255, .62);
    color: var(--color-text);
    line-height: 1.1;
}

.df-staff-readiness-badge strong {
    font-size: 13px;
    font-weight: 950;
}

.df-staff-readiness-badge em {
    color: var(--color-muted);
    font-size: 10px;
    font-style: normal;
    font-weight: 850;
    white-space: nowrap;
}

.df-staff-readiness-badge.is-ready,
.df-staff-readiness-badge.is-prepared {
    border-color: rgba(43, 124, 75, .20);
    background: rgba(43, 124, 75, .08);
}

.df-staff-readiness-badge.is-attention {
    border-color: rgba(195, 133, 77, .26);
    background: rgba(195, 133, 77, .10);
}

.df-staff-readiness-badge.is-review {
    border-color: rgba(176, 54, 54, .24);
    background: rgba(176, 54, 54, .08);
}

.df-staff-readiness-badge.is-unknown {
    border-style: dashed;
    color: var(--color-muted);
}

.df-profile-readiness-card {
    margin: 0 0 16px;
}

.df-profile-readiness-head {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 12px;
}

.df-profile-readiness-head span {
    display: block;
    margin-bottom: 4px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.df-profile-readiness-head h3 {
    margin: 0;
    font-size: 18px;
}

.df-profile-readiness-head p {
    max-width: 640px;
    margin: 5px 0 0;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.45;
}

.df-profile-readiness-head > strong {
    color: var(--color-text);
    font-size: 26px;
    line-height: 1;
}

.df-profile-readiness-meter {
    overflow: hidden;
    height: 7px;
    border-radius: 999px;
    background: rgba(45, 28, 15, .08);
}

.df-profile-readiness-meter i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
}

.df-profile-readiness-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 14px;
}

.df-profile-readiness-summary span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(45, 28, 15, .06);
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 850;
}

.df-profile-readiness-phases {
    display: grid;
    gap: 10px;
}

.df-profile-readiness-phase {
    padding: 12px;
    border: 1px solid rgba(45, 28, 15, .08);
    border-radius: 8px;
    background: rgba(255, 255, 255, .48);
}

.df-profile-readiness-phase-head {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.df-profile-readiness-phase-head strong {
    font-size: 13px;
}

.df-profile-readiness-phase-head span {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 900;
}

.df-profile-readiness-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.df-profile-readiness-field {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    min-height: 30px;
    padding: 0 9px;
    border: 1px solid rgba(45, 28, 15, .08);
    border-radius: 999px;
    background: #fff;
    color: var(--color-text);
    font-size: 12px;
    font-weight: 850;
}

.df-profile-readiness-field em {
    color: var(--color-muted);
    font-style: normal;
    font-weight: 750;
}

.df-profile-readiness-field.is-missing {
    border-color: rgba(195, 91, 44, .24);
    background: rgba(195, 91, 44, .08);
}

.df-profile-readiness-field.is-rejected {
    border-color: rgba(176, 54, 54, .28);
    background: rgba(176, 54, 54, .08);
}

.df-profile-readiness-field.is-approved,
.df-profile-readiness-field.is-provided {
    border-color: rgba(43, 124, 75, .22);
    background: rgba(43, 124, 75, .08);
}

.df-profile-readiness-field.is-pending,
.df-profile-readiness-field.is-under_review {
    border-color: rgba(195, 133, 77, .26);
    background: rgba(195, 133, 77, .10);
}

.df-profile-readiness-field.is-prepared {
    border-style: dashed;
    background: rgba(255, 255, 255, .52);
    color: var(--color-muted);
}

.df-host-inline-add-listing {
    margin-top: 10px;
    border: 1px solid rgba(45, 28, 15, .10);
    border-radius: 8px;
    background: rgba(255, 255, 255, .44);
}

.df-host-inline-add-listing summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
    padding: 0 14px;
    color: var(--color-text);
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    list-style: none;
}

.df-host-inline-add-listing summary::-webkit-details-marker {
    display: none;
}

.df-host-inline-add-listing summary strong {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(45, 28, 15, .06);
    color: var(--color-text);
    font-size: 18px;
    line-height: 1;
    transition: transform .18s ease;
}

.df-host-inline-add-listing[open] summary strong {
    transform: rotate(45deg);
}

.df-host-inline-add-listing .df-host-submit-card {
    margin: 0;
    border: 0;
    border-top: 1px solid rgba(45, 28, 15, .08);
    border-radius: 0 0 8px 8px;
    box-shadow: none;
}
