/**
 * Parameter Slicer Styles
 */

.bhi-dashboard-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    align-items: flex-end;
    padding: 16px;
    margin: 0 0 24px;
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
}

.bhi-dashboard-filters .bhi-parameter-slicer {
    margin: 0;
    flex: 1 1 200px;
    min-width: 180px;
}

.bhi-parameter-slicer {
    padding: 12px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 10px 0;
}

.bhi-parameter-slicer.horizontal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bhi-parameter-slicer.vertical {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bhi-slicer-label {
    font-weight: 600;
    font-size: 14px;
    color: #1e1e1e;
    margin: 0;
    min-width: 100px;
}

.bhi-slicer-control {
    padding: 8px 12px;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    font-size: 14px;
    min-width: 150px;
}

.bhi-slicer-control:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 1px #2271b1;
}

.bhi-slicer-date-range,
.bhi-slicer-number-range {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bhi-slicer-date-range input,
.bhi-slicer-number-range input {
    flex: 1;
}

.bhi-slicer-clear {
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #8c8f94;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    color: #1e1e1e;
}

.bhi-slicer-clear:hover {
    background: #f0f0f0;
    border-color: #2271b1;
    color: #2271b1;
}
