.individual-event{
    
}
.card {
    border: none;
    border-radius: 0;
    background-color: var(--bg-gray-light);
}

.card-height {
    /* height: 20vh; */
    height: 150px;
}

.card-img-top {
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

/* Basic Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* When script adds .show */
.modal.show {
    opacity: 1;
}

.modal-content {
    /* max-width: 50%; */
    max-height: 70vh;
    border-radius: 8px;
    margin: 0 auto;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}