.cfs-flight-form {
    background: #e3f0ff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 100%;
}

.cfs-form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.cfs-tabs {
    display: flex;
    margin-bottom: 10px;
}
.cfs-tab {
    padding: 10px 20px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    cursor: pointer;
    border-radius: 5px 5px 0 0;
    margin-right: 5px;
}
.cfs-tab.active {
    background: #3778BE;
    color: #fff;
    border-color: #3778BE;
}

.cfs-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.cfs-field {
    flex: 1 1 23%;
    display: flex;
    flex-direction: column;
    min-width: 150px;
}
.cfs-field label {
    margin-bottom: 5px;
    font-weight: 500;
    font-size: 14px;
    color: #000;
}
.cfs-field input,
.cfs-field select {
    padding: 15px;
    border: 1px solid #6f6f6f;
    border-radius: 6px;
    font-size: 14px;
}

.cfs-field.submit-btn {
    align-self: flex-end;
    justify-content: flex-end;
}
.cfs-search-btn {
    background: #f29039;
    color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

@media (max-width: 768px) {
    .cfs-row {
        flex-direction: column;
    }
    .cfs-field {
        width: 100%;
    }
}


input:not([type="checkbox"]) {
    border: 1px solid #6f6f6f;
    background-color: #ffffff00;
}
