/* Calendar Archive Start */

.calendar-wrapper {
    max-width: 1100px;
    margin: 40px auto;
}

#calendar {
    max-width: 1100px;
    margin: 40px auto;
    font-family: Arial, sans-serif;
}

.fc-toolbar {
    background: #e0e0e0;
    padding: 10px 15px;
    border-radius: 4px;
}c

.fc-toolbar-title {
    font-size: 20px;
    font-weight: 600;
}

.fc-button {
    background: #2e7d32 !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 6px 12px !important;
    font-size: 14px !important;
}

.fc-button:hover {
    background: #1b5e20 !important;
}

.fc-col-header-cell {
    background: #f1f1f1;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 0;
}

.fc-daygrid-day {
    background: #fafafa;
    border: 1px solid #ddd !important;
    transition: 0.2s;
}

.fc-daygrid-day:hover {
    background: #f1f8f1;
}

.fc-day-today {
    background: #fff3cd !important;
}

.fc-daygrid-day.has-event .fc-daygrid-day-frame {
    background: #e8f5e9 !important;
}

.fc-daygrid-day-number {
    font-weight: bold;
    font-size: 14px;
    color: #000;
    padding: 4px;
}

.fc-daygrid-event {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-top: 2px;
}


td.fc-day.fc-day-past.fc-daygrid-day,
td.fc-day.fc-day-future.fc-daygrid-day {
    height: 60px;
}

.fc .fc-daygrid-day-top {
    display: flex;
    flex-direction: inherit;
}

.event-item {
    display: block;
    font-size: 12px;
    color: #2e7d32 !important;
    font-weight: 500;
}

.seminar-item {
    display: block;
    font-size: 12px;
    color: #1565c0 !important;
    font-weight: 500;
}

.fc-daygrid-day.fc-day-other {
    display: none;
}

.fc-daygrid-event-harness {
    margin-top: 2px;
}

.fc-daygrid-day-frame {
    min-height: 95px;
}

.fc-scroller {
    overflow: hidden !important;
}

.fc-h-event .fc-event-title {
    display: inline-block;
    left: 0px;
    max-width: 100%;
    overflow: hidden;
    color: #2e5b27;
    right: 0px;
    vertical-align: top;
}

.upcoming-wrapper {
    max-width: 1100px;
    margin: 40px auto;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.upcoming-wrapper h2 {
    color: #2e7d32;
    margin-bottom: 20px;
}

.upcoming-wrapper h3 {
    margin-bottom: 10px;
}

.upcoming-wrapper p {
    font-size: 14px;
    line-height: 1.6;
}

.upcoming-wrapper a {
    color: #2e7d32;
    text-decoration: none;
}

@media (max-width: 768px) {
    .fc-toolbar-title {
        font-size: 16px;
    }

    .fc-button {
        padding: 4px 8px !important;
        font-size: 12px !important;
    }
}

/* Calendar Archive END */



/* Seminars and Events CSS Start */


.event-single-wrapper {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
}

.event-single-wrapper h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
}

p.success-msg {
    text-align: center;
    color: #2e7d32;
    font-size: 18px;
    font-weight: 500;
}

.event-single-wrapper p {
    font-size: 15px;
    margin-bottom: 10px;
    color: #444;
	margin-top: 10px;
}

.event-single-wrapper strong {
    color: #000;
}

.event-single-wrapper .content {
    margin-top: 20px;
    line-height: 1.7;
    font-size: 15px;
}

.event-single-wrapper .event-info {
    background: #f5f7f6;
    padding: 15px 20px;
    border-left: 4px solid #2e7d32;
    margin-bottom: 20px;
}

.event-single-wrapper .btn {
    display: inline-block;
    background: #2e7d32;
    color: #fff;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
}

.event-single-wrapper .btn:hover {
    background: #1b5e20;
}

.event-single-wrapper .speaker {
    color: #1565c0;
    font-weight: 500;
}

.booking-form {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #ddd;
}

.booking-form input {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
}

.booking-form button {
    background: #2e7d32;
    color: #fff;
    padding: 5px 20px;
    border: 1px solid #2e7d32;
    border-radius: 50px;
}

.booking-form button:hover{
    background: transparent;
    color: #2e7d32;
}

h3.booking-form--heading {
    color: #254023;
    font-size: 24px !important;
    text-align: center;
    margin: 25px 0px;
}

@media (max-width: 768px) {
    .event-single-wrapper {
        padding: 15px;
    }

    .event-single-wrapper h1 {
        font-size: 24px;
    }
}