.subtitle {
    font-family: "Tsukimi Rounded", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    border-bottom: 2.0px solid var(--global-accent-text-color) !important;
}

.subsubtitle {
    font-family: "Tsukimi Rounded", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.table-wrap {
    max-width: 700px;
    margin: 2rem auto;
}

.rooms-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--global-code-background-color);
    backdrop-filter: blur(4px);
    border-radius: 6px;
    overflow: hidden;
}

.rooms-table th,
.rooms-table td {
    padding: 12px 16px;
    text-align: left;
}

.rooms-table th {
    color: var(--global-code-background-color);
    background: var(--global-code-text-color);
    border-bottom: 2px solid rgba(125, 125, 125);
    font-weight: 600;
}

.rooms-table td {
    border-bottom: 1px solid rgba(125, 125, 125);
}

@media (max-width: 600px) {
    .rooms-table thead {
        display: none;
    }

    .rooms-table,
    .rooms-table tbody,
    .rooms-table tr,
    .rooms-table td {
        display: block;
        width: 100%;
    }

    .rooms-table tr {
        margin-bottom: 10px;
        background: rgba(125, 125, 125);
        border-radius: 6px;
    }

    .rooms-table td {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid rgba(125, 125, 125);
    }

    .rooms-table td::before {
        content: attr(data-label);
        font-weight: 600;
        margin-right: 12px;
    }
}