@charset "utf-8";

/* ==========================================================================
   p-rent-archive
   ========================================================================== */

.p-rent-archive {
    width: 100%;
    background-color: #f7f6f3;
    color: #1a1a1a;
    padding-bottom: 120px;
}

.p-rent-archive-hero {
    background-color: var(--color-hero-navy);
    background-image: linear-gradient(180deg, var(--color-hero-navy) 0%, #08152c 100%);
    padding: 100px 0;
    color: #ffffff;
    margin-bottom: 70px;
}

.p-rent-archive-hero-inner {
    width: min(100%, 1440px);
    margin-inline: auto;
    padding-inline: 40px;
}

.p-rent-archive-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--color-hero-gold);
    border: 1px solid var(--color-hero-gold);
    padding: 4px 12px;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.p-rent-archive-main-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.p-rent-archive-sub-title {
    font-size: 16px;
    color: #a4b3c6;
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.05em;
}

.p-rent-archive-container {
    width: min(100%, 1440px);
    margin: -140px auto 0;
    padding-inline: 40px;
}

/* ==========================================================================
   p-rent-archive-filter
   ========================================================================== */

.p-rent-archive-filter {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(14, 34, 69, 0.04);
    border: 1px solid #ebedf2;
    width: 100%;
}

.p-rent-archive-filter-form {
    padding: 40px;
}

.p-rent-filter-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f2f5;
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.p-rent-filter-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-hero-navy);
    margin: 0;
}

.p-rent-filter-section-title .material-symbols-outlined {
    font-size: 22px;
    color: var(--color-hero-navy);
}

.p-rent-filter-reset-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #6c788c;
    cursor: pointer;
    transition: color 0.2s;
}

@media (any-hover: hover) {
    .p-rent-filter-reset-link:hover {
        color: var(--color-hero-gold);
    }
}

.p-rent-filter-reset-link .material-symbols-outlined {
    font-size: 18px;
}

.p-rent-filter-area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.p-rent-filter-area-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.p-rent-filter-area-card.m-tobu {
    grid-column: span 2;
}

.p-rent-filter-area-card-head {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 20px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.p-rent-filter-area-card.m-hamamatsu .p-rent-filter-area-card-head {
    background: linear-gradient(135deg, #0f2347 0%, #1d396b 100%);
}

.p-rent-filter-area-card.m-chuto .p-rent-filter-area-card-head {
    background: linear-gradient(135deg, #165239 0%, #297a58 100%);
}

.p-rent-filter-area-card.m-tobu .p-rent-filter-area-card-head {
    background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
}

.p-rent-filter-area-card-head .material-symbols-outlined {
    font-size: 20px;
    opacity: 0.9;
}

.p-rent-filter-area-card-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px;
}

.p-rent-filter-area-card.m-tobu .p-rent-filter-area-card-body {
    grid-template-columns: repeat(6, 1fr);
}

.p-rent-filter-chip {
    position: relative;
    display: block;
    cursor: pointer;
}

.p-rent-filter-chip input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.p-rent-filter-chip-text {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    line-height: 1.5;
    transition: all 0.2s ease;
    text-align: left;
}

.p-rent-filter-chip-text::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    background-color: #ffffff;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.p-rent-filter-chip input[type="checkbox"]:checked+.p-rent-filter-chip-text {
    background-color: #0f2347;
    border-color: #0f2347;
    color: #ffffff;
}

.p-rent-filter-chip input[type="checkbox"]:checked+.p-rent-filter-chip-text::before {
    border-color: var(--color-hero-gold);
    background-color: var(--color-hero-gold);
    box-shadow: inset 0 0 0 2px #0f2347;
}

@media (any-hover: hover) {
    .p-rent-filter-chip:hover .p-rent-filter-chip-text {
        border-color: var(--color-hero-gold);
    }
}

.p-rent-filter-spec-container {
    width: 100%;
    border: 1px solid #ebedf2;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 32px;
}

.p-rent-filter-spec-row {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #ebedf2;
}

.p-rent-filter-spec-row:last-of-type {
    border-bottom: none;
}

.p-rent-filter-spec-cell {
    flex: 1;
    min-width: 0;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
}

.p-rent-filter-spec-row.m-range-group .p-rent-filter-spec-cell:first-of-type {
    border-right: 1px solid #ebedf2;
}

.p-rent-filter-spec-row.m-triple-group .p-rent-filter-spec-cell {
    border-right: 1px solid #ebedf2;
}

.p-rent-filter-spec-row.m-triple-group .p-rent-filter-spec-cell:last-of-type {
    border-right: none;
}

.p-rent-filter-spec-cell.m-fullwidth {
    flex: none;
    width: 100%;
}

.p-rent-filter-spec-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-hero-navy);
    width: 140px;
    flex-shrink: 0;
}

.p-rent-filter-spec-label .material-symbols-outlined {
    font-size: 20px;
}

.p-rent-filter-spec-label .m-icon-price {
    color: var(--color-hero-gold);
}

.p-rent-filter-spec-label .m-icon-area,
.p-rent-filter-spec-label .m-icon-layout,
.p-rent-filter-spec-label .m-icon-facility {
    color: #297a58;
}

.p-rent-filter-spec-control {
    display: flex;
    align-items: center;
    flex-grow: 1;
    min-width: 0;
}

.p-rent-filter-spec-control.m-range {
    gap: 8px;
}

.p-rent-filter-select-wrapper {
    position: relative;
    width: 140px;
}

.p-rent-filter-select-wrapper::after {
    content: "expand_more";
    font-family: "Material Symbols Outlined";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 18px;
    pointer-events: none;
}

.p-rent-filter-select {
    width: 100%;
    height: 42px;
    background-color: #0f2347;
    border: 1px solid #0f2347;
    border-radius: 4px;
    padding: 0 32px 0 12px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    appearance: none;
    cursor: pointer;
}

.p-rent-filter-range-wave {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
}

.p-rent-filter-unit {
    font-size: 16px;
    font-weight: 700;
    color: #334155;
    margin-left: 4px;
}

.p-rent-filter-spec-control.m-inline {
    display: flex;
    align-items: center;
    gap: 12px 20px;
    flex-wrap: wrap;
}

.p-rent-filter-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.p-rent-filter-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.p-rent-filter-checkbox-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #334155;
    white-space: nowrap;
}

.p-rent-filter-checkbox-text::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #cbd5e1;
    border-radius: 2px;
    background-color: #ffffff;
    transition: all 0.15s ease;
}

.p-rent-filter-radio {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.p-rent-filter-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.p-rent-filter-radio-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #334155;
    white-space: nowrap;
}

.p-rent-filter-radio-text::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #cbd5e1;
    border-radius: 50%;
    background-color: #ffffff;
    transition: all 0.15s ease;
}

.p-rent-archive-filter-toggle-box {
    margin-top: 0;
    text-align: left;
}

.p-rent-archive-filter-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid var(--color-hero-navy);
    border-radius: 4px;
    padding: 16px 24px;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    background-color: var(--color-hero-navy);
    transition: all 0.3s ease;
    letter-spacing: 0.06em;
}

@media (any-hover: hover) {
    .p-rent-archive-filter-toggle-btn:hover {
        background-color: var(--color-hero-gold);
        border-color: var(--color-hero-gold);
    }
}

.p-rent-archive-filter-toggle-btn .material-symbols-outlined {
    font-size: 20px;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
}

.p-rent-archive-filter-toggle-btn .p-rent-archive-filter-toggle-text-active {
    display: none;
}

.p-rent-archive-filter-toggle-btn.is-active {
    background-color: #ffffff;
    color: var(--color-hero-navy);
    border-color: var(--color-hero-navy);
}

@media (any-hover: hover) {
    .p-rent-archive-filter-toggle-btn.is-active:hover {
        background-color: #f7f6f3;
    }
}

.p-rent-archive-filter-toggle-btn.is-active .p-rent-archive-filter-toggle-text-default {
    display: none;
}

.p-rent-archive-filter-toggle-btn.is-active .p-rent-archive-filter-toggle-text-active {
    display: inline-flex;
    align-items: center;
}

.p-rent-archive-filter-accordion {
    display: none;
    margin-top: 32px;
    background-color: #ffffff;
}

.p-rent-archive-filter-accordion.is-open {
    display: block;
}

.p-rent-filter-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f2f5;
    margin-top: 40px;
    padding-top: 32px;
}

.p-rent-filter-clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s ease;
}

@media (any-hover: hover) {
    .p-rent-filter-clear-btn:hover {
        background-color: #f8fafc;
        border-color: #94a3b8;
        color: #0f2347;
    }
}

.p-rent-filter-clear-btn .material-symbols-outlined {
    font-size: 20px;
}

.p-rent-filter-submit-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
}

.p-rent-filter-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-hero-gold) 0%, #9e845c 100%);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(184, 158, 116, 0.25);
    transition: all 0.3s ease;
}

@media (any-hover: hover) {
    .p-rent-filter-submit-btn:hover {
        box-shadow: 0 15px 35px rgba(184, 158, 116, 0.4);
        transform: translateY(-1px);
        opacity: 0.95;
    }
}

.p-rent-filter-submit-btn .material-symbols-outlined {
    font-size: 20px;
}

.p-rent-filter-count-box {
    font-size: 16px;
    font-weight: 700;
    color: #334155;
}

.p-rent-filter-count-num {
    font-size: 24px;
    font-weight: 800;
    color: #0f2347;
    margin: 0 4px;
}

/* ==========================================================================
   p-rent-archive-bulk-bar
   ========================================================================== */

.p-rent-archive-bulk-bar {
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid #e1dbd6;
    padding: 14px 24px;
    margin-top: 32px;
    margin-bottom: -16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.p-rent-archive-bulk-select-all {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
}

.p-rent-archive-bulk-select-all input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.p-rent-archive-bulk-submit {
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    background-color: #cccccc;
    cursor: not-allowed;
}

.p-rent-archive-bulk-submit.is-active {
    background-color: #e65c00;
    cursor: pointer;
}

@media (any-hover: hover) {
    .p-rent-archive-bulk-submit.is-active:hover {
        background-color: #cc5200;
    }
}

.p-rent-archive-bulk-submit .material-symbols-outlined {
    font-size: 20px;
}

/* ==========================================================================
   p-rent-archive-list
   ========================================================================== */

.p-rent-archive-list {
    margin-top: 48px;
    width: 100%;
}

.p-rent-archive-item {
    background-color: #ffffff;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(14, 34, 69, 0.02);
    border: 1px solid #edebe6;
    margin-bottom: 32px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

@media (any-hover: hover) {
    .p-rent-archive-item:hover {
        box-shadow: 0 15px 40px rgba(14, 34, 69, 0.08);
        border-color: var(--color-hero-gold);
    }
}

.p-rent-archive-item-head {
    background-color: #ffffff;
    border-bottom: 1px solid #f0edf7;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-left: 4px solid var(--color-hero-gold);
}

.p-rent-archive-item-title-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.p-rent-archive-item-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    color: var(--color-hero-navy);
    letter-spacing: 0.03em;
}

.p-rent-archive-item-info-text {
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.7;
}

.p-rent-archive-item-grid-content.m-nested-layout {
    display: flex;
    width: 100%;
    background-color: #ffffff;
}

.p-rent-archive-item-image-link {
    display: block;
    margin: 24px;
    flex-shrink: 0;
}

.p-rent-archive-item-image-box {
    width: 240px;
    aspect-ratio: 4 / 3;
    background-color: #fbfaf8;
    overflow: hidden;
    border: 1px solid #eef0f4;
    border-radius: 4px;
}

.p-rent-archive-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

@media (any-hover: hover) {
    .p-rent-archive-item:hover .p-rent-archive-item-image {
        transform: scale(1.03);
    }
}

.p-rent-archive-item-table-box.m-rooms-table-wrap {
    flex-grow: 1;
    padding: 24px 24px 24px 0;
}

.p-rent-archive-nested-rooms-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.p-rent-archive-nested-rooms-table th,
.p-rent-archive-nested-rooms-table td {
    padding: 14px 16px;
    font-size: 16px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
    line-height: 1.6;
}

.p-rent-archive-nested-rooms-table thead th {
    background-color: #f8fafc;
    color: #475569;
    font-weight: 700;
    border-bottom: 2px solid #cbd5e1;
    white-space: nowrap;
}

.p-rent-archive-nested-rooms-table tbody tr:last-of-type td {
    border-bottom: none;
}

@media (any-hover: hover) {
    .p-rent-archive-nested-rooms-table tbody tr:hover td {
        background-color: #f8fafc;
    }
}

.m-col-select {
    width: 50px;
    text-align: center !important;
}

.m-col-room {
    width: 110px;
}

.m-col-price {
    width: 220px;
}

.m-col-deposit {
    width: 140px;
    color: #475569;
    font-weight: 500;
}

.m-col-layout {
    width: 150px;
}

.m-col-action {
    width: 130px;
    text-align: right !important;
}

.p-rent-room-number-text {
    font-weight: 700;
    color: var(--color-hero-navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.p-rent-archive-item-badge-new {
    background-color: #e15420;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 2px;
    margin-left: 4px;
}

.p-rent-table-price-num {
    font-size: 20px;
    font-weight: 800;
    color: #e15420;
}

.p-rent-table-sub-fee {
    font-size: 13px;
    color: #64748b;
    display: block;
    margin-top: 2px;
}

.p-rent-table-layout-txt {
    font-weight: 700;
    color: #334155;
    display: block;
}

.p-rent-table-area-txt {
    font-size: 13px;
    color: #64748b;
}

.p-rent-table-action-buttons {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
}

.p-rent-table-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.p-rent-table-btn.m-detail {
    background-color: var(--color-hero-navy);
    color: #ffffff;
    padding: 0 16px;
    border: 1px solid var(--color-hero-navy);
}

@media (any-hover: hover) {
    .p-rent-table-btn.m-detail:hover {
        background-color: var(--color-hero-gold);
        border-color: var(--color-hero-gold);
    }
}

.p-rent-table-btn.m-contact {
    background-color: #e15420;
    color: #ffffff;
    width: 34px;
}

@media (any-hover: hover) {
    .p-rent-table-btn.m-contact:hover {
        background-color: #c84314;
    }
}

.p-rent-table-btn.m-contact .material-symbols-outlined {
    font-size: 16px;
}

.p-rent-archive-empty {
    text-align: center;
    padding: 80px 40px;
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px dashed #edebe6;
}

.p-rent-archive-empty .material-symbols-outlined {
    font-size: 48px;
    color: #a09990;
    margin-bottom: 16px;
}

.p-rent-archive-empty-text {
    font-size: 16px;
    font-weight: 700;
    color: #666666;
    margin: 0;
}

.p-rent-archive-pagination {
    margin-top: 40px;
    width: 100%;
}

/* ==========================================================================
   RESPONSIVE CONTROL
   ========================================================================== */

@media screen and (max-width: 1024px) {
    .p-rent-archive {
        padding-bottom: 90px;
    }

    .p-rent-archive-hero {
        padding-block: 80px 140px;
    }

    .p-rent-archive-hero-inner,
    .p-rent-archive-container {
        padding-inline: 32px;
    }

    .p-rent-archive-main-title {
        font-size: 36px;
    }

    .p-rent-archive-container {
        margin-top: -70px;
    }

    .p-rent-archive-filter-form {
        padding: 32px;
    }

    .p-rent-archive-bulk-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 20px;
    }

    .p-rent-archive-bulk-submit {
        width: 100%;
        justify-content: center;
    }

    .p-rent-archive-item-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .p-rent-archive-item-grid-content.m-nested-layout {
        flex-direction: column;
    }

    .p-rent-archive-item-image-link {
        width: calc(100% - 48px);
        margin: 24px 24px 0;
    }

    .p-rent-archive-item-image-box {
        width: 100%;
        aspect-ratio: 16 / 9;
    }

    .p-rent-archive-item-table-box.m-rooms-table-wrap {
        padding: 24px;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .p-rent-archive {
        padding-bottom: 60px;
    }

    .p-rent-archive-hero {
        padding-block: 56px 96px;
    }

    .p-rent-archive-hero-inner,
    .p-rent-archive-container {
        padding-inline: 20px;
    }

    .p-rent-archive-container {
        margin-top: -40px;
    }

    .p-rent-archive-badge {
        font-size: 10px;
        margin-bottom: 16px;
    }

    .p-rent-archive-main-title {
        font-size: 28px;
        line-height: 1.35;
    }

    .p-rent-archive-sub-title {
        font-size: 13px;
        line-height: 1.8;
    }

    .p-rent-archive-filter-form {
        padding: 22px 18px;
    }

    .p-rent-filter-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .p-rent-filter-section-title {
        font-size: 18px;
    }

    .p-rent-filter-reset-link {
        font-size: 16px;
    }

    .p-rent-archive-filter-toggle-btn {
        padding: 14px 16px;
        font-size: 16px;
        line-height: 1.5;
    }

    .p-rent-archive-bulk-bar {
        padding: 16px;
    }

    .p-rent-archive-bulk-select-all,
    .p-rent-archive-bulk-submit {
        font-size: 16px;
    }

    .p-rent-archive-item {
        margin-bottom: 22px;
    }

    .p-rent-archive-item-head {
        padding: 18px;
    }

    .p-rent-archive-item-title {
        font-size: 20px;
    }

    .p-rent-archive-item-info-text {
        font-size: 16px;
    }

    .p-rent-archive-item-image-link {
        width: calc(100% - 36px);
        margin: 18px 18px 0;
    }

    .p-rent-archive-item-table-box.m-rooms-table-wrap {
        padding: 18px;
    }

    .p-rent-archive-nested-rooms-table,
    .p-rent-archive-nested-rooms-table thead,
    .p-rent-archive-nested-rooms-table tbody,
    .p-rent-archive-nested-rooms-table tr,
    .p-rent-archive-nested-rooms-table th,
    .p-rent-archive-nested-rooms-table td {
        display: block;
        width: 100% !important;
    }

    .p-rent-archive-nested-rooms-table thead {
        display: none;
    }

    .p-rent-archive-nested-rooms-table tbody tr {
        position: relative;
        padding: 18px 16px 18px 48px;
        border-bottom: 1px solid #cbd5e1;
    }

    .p-rent-archive-nested-rooms-table tbody tr:last-of-type {
        border-bottom: none;
    }

    .p-rent-archive-nested-rooms-table td {
        padding: 0 0 10px;
        border: none;
        text-align: left !important;
        font-size: 16px;
        line-height: 1.7;
    }

    .p-rent-archive-nested-rooms-table td.m-col-select {
        position: absolute;
        left: 14px;
        top: 20px;
        padding: 0;
    }

    .p-rent-archive-nested-rooms-table td.m-col-action {
        padding-bottom: 0;
        margin-top: 6px;
    }

    .p-rent-table-action-buttons {
        justify-content: flex-start;
    }

    .p-rent-table-btn.m-detail {
        flex-grow: 1;
    }

    .p-rent-table-btn {
        height: 38px;
        font-size: 16px;
    }

    .p-rent-table-btn.m-contact {
        width: 38px;
    }

    .p-rent-archive-empty {
        padding: 50px 20px;
    }
}