body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f0f0f0;
    font-family: "factoria", serif;
}

input#searchBox {
    width: 70%;
    max-width: 500px;
    padding: 12px;
    margin: 0 auto 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    position: relative;
}

.print-button {
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: none;
}

.event-item {
    background-color: white;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
    transition: transform 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.event-item:hover {
    transform: scale(1.02);
}

.event-item[data-search*="hidden"] {
    display: none;
}

.date-section {
    align-items: center;
    justify-content: left;
    width: 100%;
    max-width: 800px;
    margin: 5px;
    background-color: rgba(208, 209, 208, 0.48);
}

.arrow-icon {
    width: 20px;
    height: 20px;
}

.schedule-date {
    font-size: 24px;
    line-height: 24px;
    font-family: "factoria", serif;
    margin: 20px 0 10px;
    padding-top: 10px;
    padding-left: 10px;
    text-align: center;
    color: #777;
}

.schedule-date-day {
    font-size: 16px;
    line-height: 22px;
    display: block;
    text-transform: uppercase;
    font-family: "warnock", sans-serif;
    margin-top: -6px;
    letter-spacing: 1px;
    padding-left: 10px;
}

.schedule-time,
.schedule-location {
    font-size: 14px;
    color: #555;
}

.schedule-description {
    font-size: 16px;
    font-weight: bold;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    width: 100%;
}

.event-item-wrapper {
    padding-left: 10px;
    display: flex;
    width: 100%;
    max-width: 800px;
    margin: 5px 0;
}

.event-item-wrapper[data-search*="hidden"] {
    display: none;
}

.event-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calendar-icon {
    height: 24px;
    width: 24px;
    cursor: pointer;
}

.calendar-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.calendar-icon-wrapper {
    align-items: right;
}

.calendar-popup a {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    text-decoration: none;
    color: black;
}

.calendar-popup a img {
    width: 20px;
    margin-right: 8px;
}

.calendar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.hide-practice {
    display: none !important;
}
