#calendar{
    width: 100%;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 1px 2px #c3c3c3;
}
a.fc-col-header-cell-cushion {
    color: #010101;
    text-decoration: none;
}

.fc-daygrid-day-number {
    color: #010101;
    text-decoration: none;
}

.fc-h-event {
    background-color: var(--fc-event-bg-color);
    border: 1px solid var(--fc-event-border-color);
    display: block;
}
#event-details {
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 20px;
    width: 100%;
    color: #010101;
}

#event-details h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

#event-details p {
    font-size: 16px;
    margin-bottom: 5px;
}

#event-details p strong {
    font-weight: 600;
    font-size: 16px;
}

#event-details #event-title {
    font-size: 18px;
    font-weight: 600;
    color: #e26b0a;
}

#event-details #event-start{
    color: #e26b0a;
    font-weight: 600;
}
#event-details #event-description {
    font-size: 16px;
    color: #010101;
}