html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
header {
    padding: 60px 15px 0px 15px;
    width: 100%;
}
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin: auto;
}
.content-wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
    box-sizing: border-box; /* padding을 너비에 포함 */
}
h1 {
    margin: 0;
    font-size: 1.2rem;
}
header p {
    margin: 0.3rem 0 0;
    font-size: .9rem;
}
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}
.button-container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}
.left-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 48%;
}
.right-button {
    width: 48%;
}
button{
    width: 100%;
    padding: 25px 20px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
}
#reservationInquiry {
    height: 100%;
}
.today-status {
    border: 1px solid var(--border-light);
    padding: 1rem;
    border-radius: 8px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.today-status h2 {
    color: var(--black-500);
    font-size: 1rem;
    margin: 0;
    margin-bottom: 10px;
}
#facilityList {
    overflow-y: auto;
    flex-grow: 1;
    line-height: 1.8;
    font-size: .9rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
#facilityList::-webkit-scrollbar {
    width: 8px;
}
#facilityList::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
#facilityList::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
#facilityList::-webkit-scrollbar-thumb:hover {
    background: #555;
}
#facilityList span {
    color: var(--black-500);
}
#facilityList .status {
    font-weight: bold;
}
#facilityList .available {
    color: var(--primary-dark);
}
#facilityList .unavailable {
    color: var(--neutral-dark);
}
