.event-card {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
}

.event-card-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 10px;
    background: #3f444b;
    color: #fff;
    padding: 10px 30px;
    margin-top: -15px;
    margin-left: -15px;
    margin-right: -15px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.event-card-body .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.event-card-footer button.event-cancel-popup {    margin-right: 10px;}

@media (min-width: 1024px) {
    .event-card-body .row {
        line-height: 0;
    }
}

/* my event card */
.event-card-body .col-md-6 {
    flex: 0 0 48%;
    max-width: 48%;
}

.event-card-body p {
    margin: 5px 0;
}

.event-card-footer {
    /*display: flex;*/
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    position: relative;
    right: -15px;

}


.event-card-body .row > div {
    width: 100%; /* Adjust the width for smaller screens */
    margin-bottom: 10px; /* Add some space between rows */
}

.event-card-body .row p {
    margin: 5px 0;
}

.event-card-body {
    padding: 15px; /* Add padding inside the card */
}

.event-card-body .col-md-6 {
    word-wrap: break-word; /* Ensure text doesn't overflow */
}


.event-card-body .row {
    display: flex;
    flex-wrap: wrap; /* Ensure proper wrapping */
    gap: 15px; /* Space between elements */
}

.event-card-body .row .btn {
    margin-right: 10px; /* Space between buttons */
}

.event-card-body {
    overflow: hidden;
}


.event-lis-outer-wrap {
    cursor: pointer; /* Show hand icon on hover */
}

#events-atc-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.atc-loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}