
/* General styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: url('background-image.jpg') no-repeat center center fixed;
    background-size: cover;
}
a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 70%;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

h1 {
    color: #333;
}

/* Day buttons and tabs */
td {
    width: 20vw;
}
.wrapp {
    text-align: center;
    margin: auto;
    width: 90vw;
    overflow: scroll;
}
.wrapp::-webkit-scrollbar{
    display:none;
}
.day-buttons, .tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    flex-wrap: wrap; /* For responsiveness */
}

.day-button, .tab-button {
    flex: 1;
    padding: 10px;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 5px; /* Add margin for spacing */
    font-size: 110%;
}

.day-button.active, .day-button:hover,
.tab-button.active, .tab-button:hover {
    background: #333;
    color: white;
}

/* Schedule table */
.schedule-table-container {
    margin-top: 20px;
}

.schedule-table {
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.schedule-table th, .schedule-table td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ccc;
}

.schedule-table th {
    background-color: #f0f0f0;
    font-weight: bold;
}

.schedule-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.event {
    padding: 5px;
    margin: 2px;
    border-radius: 3px;
    color: #000;
    font-weight: bold;
    white-space: nowrap;
}

.event .event-time {
    font-size: 1.2em;
    color: #000;
}

.event .event-description {
    font-size: 1em;
    color: #000;
    margin-top: 5px;
}

.current-event {
    background-color: #FFD700; /* カレントイベントの背景色 */
}

.past-event {
    opacity: 0.6; /* 過去のイベントの透明度 */
}
.container {
    width: 95vw;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 10px;
    }
}
