/* Wrapper */
.cvf-filter-wrap {
    margin-bottom: 30px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Row Layout */
.cvf-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

/* Each Column */
.cvf-col {
    min-width: 180px;
    flex: 1;
}

/* Labels */
.cvf-col label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-size: 14px;
}

/* Select Inputs */
.cvf-col select {
    width: 100%;
    /* padding: 10px ; */
    border-radius: 10px;
    border: 1px solid #d2d6dc;
    background: #f9fafb;
    font-size: 15px;
    color: #333;
    transition: all .2s ease;
}

.cvf-col select:hover {
    border-color: #b6bcc4;
}

.cvf-col select:focus {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
    outline: none;
}

/* Buttons */
.cvf-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cvf-btn {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all .25s ease;
}

/* Apply button */
.cvf-btn.apply {
    background: #078169;
    color: white;
    box-shadow: 0 3px 12px rgba(37, 99, 235, .3);
}
.cvf-btn.apply:hover {
    background: #065f4b;
}

/* Reset button */
.cvf-btn.reset {
    background: #f3f4f6;
    color: #374151;
}
.cvf-btn.reset:hover {
    background: #e5e7eb;
}

/* Placeholder + loading text */
.cvf-placeholder {
    color: #888;
    padding-top: 14px;
    font-size: 14px;
}

.cvf-loading {
    opacity: 0.5;
}

.cvf-no-results {
    color: #777;
    font-size: 14px;
}


.cvf-filter-wrap #cvf-filter-form {
    padding-bottom: 20px !important;
}
