div.search_box {
    padding: 6px 30px;
    box-shadow: 0px 0px 27px gray;
    background: #21BDA6;
    border-radius: 5px;
}

div.first_container {
    background-color: #21BDA6 !important;
    padding: 2% 8% 2% 8% !important;
}

div.first_container,
div.second_container {
    padding: 0 8%;
    background-color: black;
}

div.first_container button {
    padding: 14px 31px;
}

.form-control {
    padding: 13px !important;
}

div.first_container div.page-title {
    font-size: 24px;
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
}

div.first_container div.tab-buttons .btn {
    border: 2px solid green;
    border-radius: 0;
    color: green;
    font-weight: bold;
}

div.first_container div.tab-buttons .active {
    background-color: green;
    color: white;
}

div.first_container button.btn-booking {
    background-color: #c75b0b;
    color: white;
    font-weight: bold;
}

div.contfirst_containerainer div.event-filter-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
}

div.first_container div.event-filter-box label.form-check-label .dot {
    height: 10px;
    width: 10px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 6px;
}

div.first_container div.form-check span.dot-red {
    background-color: red;
}

div.first_container div.form-check span.dot-blue {
    background-color: blue;
}

div.first_container div.form-check span.dot-green {
    background-color: green;
}

div.first_container div.form-check span.dot-purple {
    background-color: purple;
}

div.first_container div.event-filter-box div.btn-duration .btn {
    border-radius: 0;
}

div.first_container div.event-filter-box button.btn-submit {
    background-color: orange;
    color: white;
    font-weight: bold;
    border-radius: 0 8px 8px 0;
    transition: all 0.1s ease-in-out;
}

div.first_container div.event-filter-box button.btn-submit:active {
    transform: scale(1.07);
}


div.first_container div.event-filter-box input.search-bar {
    border: none;
    border-radius: 0;
    outline: none;
    padding: 13px 12px !important;
}

div.first_container div.event-filter-box i.search-icon {
    color: green;
    margin-right: 8px;
}

.event-card {
    background-image: linear-gradient(to bottom, #262626, #252e33);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease-in-out;
    height: 100%;
    padding: 16px 10px 0px 10px;
    border: 1px solid transparent;
    color: white;
}

.event-card:hover {
    transform: scale(1.06);
    background-image: linear-gradient(to bottom, #21BDA6, #21BDA6);
    border: 1px solid #21BDA6;
    color: black;
}

.event-img {
    width: 100%;
    max-height: 220px;
    object-fit: fill
}

.event-content {
    padding: 1rem;
    height: 100%;
}

.event-title {
    font-weight: bold;
    font-size: 1.2rem;
}

.event-meta {
    font-size: 0.9rem;
}

.icon {
    margin-right: 5px;
}


.tab-buttons .btn.active {
    background-color: #0d6efd;
    color: white;
}