.liturgical-Calendar {
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 6px 2px rgba(0, 0, 0, 0.3);
    padding: 10px;
    font-size: 9px;
    margin: 7px;
    height: fit-content;
}

.cal-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: var(--blue);
    border-radius: 5px;
}

#cal-prev,
#cal-next {
    background-color: var(--dark-grey);
    color: var(--white);
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.cal-controller {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
	gap: 2px;
}

#prev-month,
#next-month,
#cal-today,
#month-picker {
    background-color: var(--coral);
    color: var(--white);
    border: none;
    cursor: pointer;
    border-radius: 5px;
	height: 35px;
	padding: 0 5px;
}

#month-picker {
    width: 150px;
    text-align: center;
}

.cal-head {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-top: 5px;
    gap: 5px;
}

.cal-day {
    padding: 3px;
    text-align: center;
    background-color: var(--light-pink);
    border-radius: 5px;
    font-weight: bold;
    color: var(--white);
    font-size: 10px;
}

.cal-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-top: 5px;
    gap: 5px;
}

.cal-body .cal-day {
    background-color: var(--white);
    color: var(--dark-grey);
    border: 1px solid var(--blue);
    cursor: pointer;
	max-width: 14vw;
    overflow: hidden;
}

.cal-day span {
    font-size: 13px;
    font-weight: bolder;
}

.cal-event {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: normal;
    line-height: 15px;
}

#cal-card {
    width: 100%;
    padding: 0 20px;
}

#cal-card .date {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--light-pink);
    padding-bottom: 1px;
}

.chosen-day-event {
    font-size: 15px;
    color: var(--dark-grey);
    margin-bottom: 10px;
    font-weight: bold;
}

.lectures {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 12px;
}

.lecture {
    padding: 0px 4px;
    background-color: var(--lighter-yellow);
    border-radius: 5px;
}

.saints h3,
.events h3 {
    font-size: 16px;
    margin-top: 10px;
    color: var(--dark-grey);
    text-decoration: underline;
    text-decoration-color: var(--light-pink);
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.saint {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-direction: column;
    padding: 0 8px;
    height: 50px;
    margin-bottom: 24px;
}

.saint img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--dark-grey);
}

.saint-name {
    font-size: 14px;
    color: var(--dark-grey);
    font-weight: bold;
}

.event {
    display: inline-flex;
    flex-wrap: wrap;
}

.events {
    display: none;
}