/* Showroom Calendar CSS */
.showroom-calendar-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.showroom-calendar {
    width: 100%;
    max-width: 420px;
    font-family: sans-serif;
    font-size: 14px;
    color: #333;
}

.showroom-calendar .calendar-header {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
    background: #f4f4f4;
    padding: 5px;
    border-radius: 4px;
}

.showroom-calendar table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.showroom-calendar th,
.showroom-calendar td {
    text-align: center;
    padding: 5px;
    border: 1px solid #eee;
    width: 14.28%;
    /* 100% / 7 */
    box-sizing: border-box;
    vertical-align: middle;
}

.showroom-calendar th {
    background-color: #fafafa;
    font-weight: normal;
    color: #666;
}

/* Specific day colors */
.showroom-calendar th:first-child {
    /* Sunday */
    color: #d9534f;
}

.showroom-calendar th:last-child {
    /* Saturday */
    color: #337ab7;
}

/* Holiday Cell */
.showroom-calendar td.holiday-cell {
    background-color: pink;
    color: darkred;
}

/* Pre-opening Cell */
.showroom-calendar td.pre-opening-cell {
    background-color: #e0e0e0;
    color: #999;
    opacity: 0.6;
}

/* Empty Cell */
.showroom-calendar td:empty {
    border: none;
    background: transparent;
}

@media (max-width: 600px) {
    .showroom-calendar-wrap {
        flex-direction: column;
    }

    .showroom-calendar {
        max-width: 100%;
    }
}


/* Showroom Message */
.showroom-message {
    margin-top: 0.6em;
}

.showroom-message-item {
    display: block;
    font-size: 95%;
    color: #dc3545;
    text-decoration: underline;
}