.df-dashboard-booking {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px;
    border: 1px solid rgba(45, 28, 15, .10);
    border-radius: 8px;
    background: rgba(255, 255, 255, .54);
}

.df-dashboard-booking-main {
    min-width: 0;
}

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

.df-dashboard-booking 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-dashboard-booking h3 a {
    color: inherit;
    text-decoration: none;
}

.df-dashboard-booking h3 a:hover {
    text-decoration: underline;
}

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

.df-dashboard-booking-meta a {
    color: var(--color-muted);
    text-decoration: none;
}

.df-dashboard-booking-meta a:hover {
    color: var(--color-text);
    text-decoration: underline;
}

.df-dashboard-booking-side {
    display: grid;
    justify-items: end;
    gap: 8px;
    flex: 0 0 auto;
}

.df-dashboard-booking-side strong {
    color: var(--color-text);
    font-size: 17px;
}

.df-host-booking {
    flex-wrap: wrap;
}

.df-host-booking .df-booking-message-panel {
    flex: 1 0 100%;
    margin-top: 2px;
    box-shadow: none;
}

.df-dashboard-status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #4b5563;
    font-size: 12px;
    font-weight: 900;
}

.df-dashboard-status.is-pending {
    background: #fff7ed;
    color: #9a3412;
}

.df-dashboard-status.is-confirmed {
    background: #ecfdf3;
    color: #17663a;
}

.df-dashboard-status.is-blocked {
    background: #eef2ff;
    color: #3730a3;
}

.df-dashboard-status.is-rejected,
.df-dashboard-status.is-cancelled {
    background: #fff1f0;
    color: #a13226;
}

.df-dashboard-empty {
    margin-top: 16px;
    padding: 16px;
    border: 1px dashed rgba(45, 28, 15, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .46);
}

.df-dashboard-empty strong {
    color: var(--color-text);
}

.df-dashboard-empty p {
    margin-top: 6px;
}
