.event-buttons {
    /* center the buttons horizontally */
    position: relative;
    width: fit-content;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;

    margin-bottom: 20px;
}

.event-buttons .btn {
    border: 1px solid #bbb;
}

.event-buttons .btn-primary {
    background-color: #0093DB;
}

.event-buttons .btn-secondary {
    background-color: #ddd;
}

.event-card {
    background-color: white;
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.05);
    padding: 20px;
    margin-bottom: 30px;
    min-height: 250px;
}

.event-card-small {
    min-height: fit-content;
}

.event-card img {
    height: auto !important;
    width: auto !important;
    max-width: 90% !important;
    max-height: 60vh !important;
}

.collapsible-event-card {
    transition: box-shadow 0.4s ease-in-out;
    max-height: 250px; /* shows a preview of the content */
    overflow: hidden;
    position: relative; 
    cursor: pointer;   
}

.collapsible-event-card:hover {
    box-shadow: 0 0 15px 5px rgba(255, 165, 0, 0.4);
}

.collapsible-event-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px; /* Height of the shadow effect */
    background: linear-gradient(to bottom, transparent, white);
}

.event-card h2 {
    color: #0056b3;
    font-weight: 600;
}

.event-card strong {
    color: #004080;
    font-weight: 600;
}

.contacts {
    border-radius: 5px;
    background-color: white;
    font-size: 12px;
}

.contacts td {
    border-bottom: 2px solid #ddd;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.office-map {
    background-color: lightgray;
    width: 90%;
    height: 300px;
}