.main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}
.thumbnail-img {
    width: 120px;
    height: 70px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
}
.comment-box, .map-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    height: 200px;
    margin-bottom: 20px;
}
.event-card {
    border-radius: 15px;
}
.font-light {
    font-family: 'Gotham Light', sans-serif;
}

.ticket-img {
    width: 50px;
    height: 50px;
    background-color: #eaeaea;
    border-radius: 8px;
    display: inline-block;
}
.summary-box, .payment-box {
    border: 1px solid #eaeaea;
    padding: 15px;
    border-radius: 8px;
}
.modal-header .btn-close {
    padding: 1rem;
}
.total {
    font-weight: bold;
    font-size: 1.5rem;
}
.add-more {
    display: block;
    width: 100%;
    background-color: #eaeaea;
    color: #6c757d;
    text-align: center;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 20px;
    cursor: pointer;
}
.btn-pay {
    background-color: #6c757d;
    color: white;
    width: 100%;
    padding: 10px;
    border-radius: 8px;
}
.modal-lg {
    max-width: 900px;
}


/* Modal content styles */
.modal-content {
    border-radius: 8px;
    padding: 20px;
}

/* Price section styles */
.d-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.d-flex span {
    font-weight: bold;
}

#subtotal, #gst, #total-price {
    font-size: 1.2rem;
}

/* Style the comments: .comment, .profile-image .comment-details, .comment-text, .comment-name */
.comment {
    display: flex;
    margin-bottom: 20px;
}


.comment-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.comment-text {
    background-color: #eaeaea;
    border-radius: 8px;
    padding: 10px;
}

.comment-name {
    font-weight: medium;
    font-size: medium;
}

.profile-pic {
    width: 70px !important;
    height: 70px !important;
    border-radius: 50%;
    margin-right: 10px;
}