.calendar-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.calendar-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.calendar-container iframe {
    border: solid 1px #777;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 700px;
    height: 600px;
}

.info-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 300px;
    text-align: left;
}

.open-hours, .notice, .special-days {
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.open-hours:hover, .notice:hover, .special-days:hover {
    transform: scale(1.02);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
}

.open-hours h3 {
    color: #d9534f;
    margin-bottom: 5px;
}

.open-hours p {
    margin: 5px 0;
}

.open-hours .closed {
    color: red;
    font-weight: bold;
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

th, td {
    border: 1px solid #ddd;
    padding: 6px;
    text-align: left;
    transition: background-color 0.2s ease-in-out;
}

tr:hover td {
    background-color: #f1f1f1;
}

@media (max-width: 900px) {
    .calendar-container {
        flex-direction: column;
        align-items: center;
    }

    .calendar-container iframe {
        width: 100%;
        height: 500px;
    }

    .info-container {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .calendar-container iframe {
        height: 400px;
    }

    .info-container {
        text-align: center;
    }

    table {
        font-size: 12px;
    }
}