.notice {
    text-align: center;
    font-size: 0.9em;
    margin-bottom: 20px;
    color: #555;
}
.month-section {
    margin-top: 30px;
}
.month-heading {
    font-size: 1.8em;
    margin-bottom: 10px;
}
.event-list {
    list-style-type: none;
    padding: 0;
    margin: 50px;
}
.event-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.event-date {
    width: 70px;
    height: 70px;
    background-color: var(--shade2); /* Teal background color */
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    border-radius: 4px;
}
.event-date span {
    font-size: 1.2em;
}
.event-date .month {
    font-weight: bold;
}
.event-date .year {
    font-size: 0.8em;
    margin-top: -5px;
}
.event-title {
    font-size: 1.1em;
    margin: 10px;
    text-decoration: none;
}
.event-title:hover {
    text-decoration: underline;
}

.month-heading span {
    color: var(--shade2);
    font-weight: 600;
}
.calendar-icon {
    width: fit-content;
    height: 70px;
    background-color: #f0f0f0; /* Light background */
    border-radius: 8px;
    border: 1px solid #ccc;
    text-align: center;
    font-family: Arial, sans-serif;
    position: relative;
}
/* Styling for the header section (month) */
.calendar-header {
    background-color: var(--shade2); /* Red color for header */
    color: white;
    padding: 3px 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-weight: bold;
    font-size: 0.9em;
}
/* Styling for the date section (day) */
.calendar-day {
    font-size: 1.4em;
    font-weight: bold;
    color: #333;
    margin: 8px 0;
}
/* Ring binding circles on the header */
.binding-ring {
    width: 7px;
    height: 7px;
    background-color: #333;
    border-radius: 50%;
    position: absolute;
    top: -3px;
}
.binding-ring.left {
    left: 10px;
}
.binding-ring.right {
    right: 10px;
}

.title-detailed{
    margin:30px;
    margin-top: 70px;
}

.event-description{
    margin:50px;
    margin-top:0px;
    margin-bottom: 20px;
}