.oxr-wrapper { font-family: inherit; }
.oxr-filters { display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end; background: #f4f5f7; padding: 14px; border-radius: 8px; margin-bottom: 18px; }
.oxr-filter-group { display: flex; flex-direction: column; font-size: 12px; }
.oxr-filter-group label { font-weight: 600; margin-bottom: 4px; }
.oxr-filter-search { min-width: 220px; }
.oxr-filter-search input, .oxr-filter { min-width: 150px; padding: 6px 8px; border: 1px solid #ccd0d4; border-radius: 6px; }

.oxr-dropdown-check { position: relative; min-width: 150px; }
.oxr-dropdown-toggle {
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.oxr-caret { font-size: 10px; margin-left: 6px; }
.oxr-dropdown-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 6px;
    padding: 4px 0;
    min-width: 200px;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
    margin-top: 4px;
}
.oxr-dropdown-panel.oxr-open { display: block; }
.oxr-dropdown-panel label {
    display: flex;
    align-items: center;
    font-weight: 400;
    margin: 0;
    padding: 6px 4px;
    white-space: nowrap;
    cursor: pointer;
}
.oxr-dropdown-panel label:hover { background: #f4f5f7; }
.oxr-dropdown-panel label input[type="checkbox"] {
    margin: 0 0 0 4px;
    padding: 0;
    flex-shrink: 0;
}
.oxr-dropdown-panel label span {
    margin-left: 4px;
}

.oxr-range-inputs { display: flex; gap: 6px; }
.oxr-range-inputs input { width: 90px; }

.oxr-reset-filters {
    background: #6b6f76;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    height: 40px;
    line-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.oxr-reset-filters:hover { background: #555; }

.oxr-kanban-board { display: flex; gap: 16px; overflow-x: auto; padding: 10px 0 30px 0; align-items: flex-start; }
.oxr-column { flex: 0 0 280px; background: #f4f5f7; border-radius: 8px; display: flex; flex-direction: column; max-height: 80vh; min-height: 200px; }
.oxr-column-header { color: #fff; font-weight: 600; padding: 12px 14px; border-radius: 8px 8px 0 0; font-size: 15px; }
.oxr-count { font-weight: 400; opacity: 0.85; font-size: 13px; }
.oxr-column-body { padding: 10px; overflow-y: auto; flex: 1; min-height: 60px; }
.oxr-column-body.oxr-drag-over { background: #e5f0fb; }
.oxr-card { background: #fff; border-radius: 6px; padding: 12px 14px; margin-bottom: 10px; box-shadow: 0 1px 2px rgba(0,0,0,0.12); border-left: 4px solid #2271b1; cursor: grab; }
.oxr-card.oxr-dragging { opacity: 0.4; }
.oxr-card-title { font-weight: 600; font-size: 14px; margin-bottom: 6px; color: #1d2327; }
.oxr-card-field { font-size: 12px; color: #555; margin-bottom: 3px; }
.oxr-field-label { font-weight: 600; }
.oxr-empty { font-size: 13px; color: #999; font-style: italic; }
@media (max-width: 768px) { .oxr-kanban-board { flex-direction: column; } .oxr-column { flex: 1 1 auto; max-height: none; } }