body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}

.download {
    margin: 1em;
    justify-self: center;
}

.download-button {
    background-color: #050505;
    border-radius: 5px;
    color: white;
    padding: .5em .75em;
    margin: 1em 1em;
    text-decoration: none;
}

.download-button:hover {
    background-color: #45eea2;
    color: #050505;
}

#mobile-calendar {
    display: flex;
    max-width: 100vw; /* Increased width */
    max-height: 90vh; /* Increased height */
    margin: 0;
    background: white;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fc-toolbar {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.fc-toolbar h2 {
    font-size: 1em;
}

.fc-button {
    padding: 8px 12px;
    font-size: .75em;
    border-radius: 5px;
}

.fc-daygrid-event {
    font-size: .75em;
    padding: 5px;
    display: flex;
    max-width: 50vw;
}

.event-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.event-title-container {
    font-weight: bold;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.event-description a {
    text-decoration-line: underline !important;
}

.event-link:hover {
    text-decoration: underline;
}

.event-image {
    width: 50px;
    height: 50px;
    margin-right: 5px;
}

.fc-list-event-time {
    display: none;
}

.fc-list-day-cushion {
    display: flex;
    justify-content: space-between;
}

@media screen and (min-width: 768px) {
    #mobile-calendar {
        display: block;
    }
}