body {
    font-family: Arial, sans-serif;
}

#calendar-container {
    max-width: 99%;
    width: 600px;
    margin: 0 auto;
    padding: 1px;
    border: 2px solid #007bff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}

#country {
    font-size: 1em;
    border-bottom: 1px solid #ccc;
}

#month-year {
    font-weight: bold;
    font-size: 1.5em;
    text-align: center;
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    padding: 4px;
    margin: 2px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

#calendar, #calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    border-top: 1px solid #ccc;
}

#calendar {
    border-bottom: 1px solid #ccc;
}

#calendar div, #calendar-header div {
    padding: 1px;
    border: none;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Superclarendon, 'Bookman Old Style', 'URW Bookman', 'URW Bookman L', 'Georgia Pro', Georgia, serif;
    font-size: 0.8em;
    font-weight: bold;
}

#calendar div {
    padding: 5px 1px;
    font-size: 1.5em;
}

.sunday, .holiday {
    color: red;
}

.today {
    background-color: rgba(0, 0, 255, 0.2);
    border-radius: 50%;
}

#holidays-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-top: 10px; /* カレンダーとの間にスペースを追加 */
} 

#holidays-container div {
    padding: 5px;
    text-align: center;
}

.fi{
    box-sizing: border-box!important;
    border:1px solid #000;
    background-size: cover!important;
    margin: 2px;
}
#back-button {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 5px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s;
}

#back-button:hover {
    background-color: #0056b3;
}

.breadcrumb {
    display: flex;
    gap: 0 22px;
    list-style: none;
    padding: 0;
    font-size: .9em;
}
.breadcrumb li {
    display: flex;
    align-items: center;
}
.breadcrumb li:not(:last-child)::after {
    display: inline-block;
    transform: rotate(45deg);
    width: .3em;
    height: .3em;
    margin-left: 10px;
    border-top: 1px solid #333333;
    border-right: 1px solid #333333;
    content: '';
}
.breadcrumb a {
    color: #333333;
    text-decoration: none;
}

#holidays {
    list-style: none;
    padding: 10px;
}
