.dateRange::placeholder {
    color: #ababab;
    opacity: 1;
}

.dateRange:-ms-input-placeholder {
    color: #ababab;
}

.dateRange::-ms-input-placeholder {
    color: #ababab;
}

.flexibleDates {
    display: block;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-check-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.form-check {
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    color: #fff;
}

.form-check-input {
    margin-right: 10px;
    accent-color: #fff;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.custom-checkbox-label {
    display: flex;
    align-items: center;
    background-color: rgba(14, 95, 216, 0.1);
    border-radius: 8px;
    padding: 15px 20px;
    cursor: pointer;
    border: 2px solid #fff;
    font-size: 16px;
    position: relative;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    margin: 5px;
}

.checkbox-container input[type="checkbox"]:checked+.custom-checkbox-label {
    background-color: #efc368;
    color: #fff;
}

.checkbox-container input[type="checkbox"]:checked+.custom-checkbox-label::before {
    content: "✔";
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    margin-right: 15px;
    color: #fff;
    font-weight: bold;
}
