#reportFilterForm .input-field {
    margin-top: 0;
    margin-bottom: 8px;
}

#reportFilterForm .select-wrapper input.select-dropdown {
    height: 2rem;
    line-height: 2rem;
    font-size: 13px;
    margin: 0;
}

#reportFilterForm .select-wrapper .caret {
    height: 2rem;
    line-height: 2rem;
}

#reportFilterForm input[type=text] {
    height: 2rem;
    margin: 0;
    font-size: 13px;
}

#reportFilterForm label {
    font-size: 0.9rem;
    top: -4px;
}

#reportFilterForm label.active {
    transform: translateY(-8px) scale(0.8);
}

#reportFilterForm .select-wrapper + label {
    top: -4px;
}

#reportFilterForm .select-wrapper + label.active {
    transform: translateY(-8px) scale(0.8);
}

.select-dropdown li {
    min-height: 35px;
}

.select-dropdown li > span {
    font-size: 13px;
    padding: 8px 16px;
}

.datepicker-container {
    transform: scale(0.9);
    transform-origin: top left;
}

/* Estilos de la tabla del reporte */
.tabulator {
    font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    border: none;
    background: white;
    height: 100%;
}

.tabulator .tabulator-header {
    background: #1976d2 !important;
    border: none;
}

.tabulator .tabulator-header .tabulator-col {
    background: transparent !important;
    border: none;
    color: white;
    font-weight: 500;
    padding: 8px;
}


.tabulator .tabulator-tableholder {
    background: transparent !important;
}

.tabulator .tabulator-header .tabulator-col.tabulator-sortable:hover {
    background: rgba(255,255,255,0.1);
}

.tabulator .tabulator-row {
    border-bottom: 1px solid #e0e0e0;
}

.tabulator .tabulator-row:nth-child(even) {
    background: #fafafa;
}

.tabulator .tabulator-row.tabulator-selected {
    background: #e3f2fd !important;
}

.tabulator .tabulator-row:hover {
    background: #f5f5f5 !important;
}

.tabulator .tabulator-row .tabulator-cell {
    padding: 12px 8px;
    border-right: none;
}

.badge-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    color: white;
}

.badge-status.green { background: #43a047; }
.badge-status.blue { background: #1976d2; }
.badge-status.orange { background: #fb8c00; }
.badge-status.red { background: #e53935; }
.badge-status.grey { background: #757575; }

/* Estilos del modal de reporte */
#reportFilterModal .modal-content {
    padding: 0;
    height: calc(100% - 56px);
    display: flex;
    flex-direction: column;
}

#reportFilterModal .filter-header {
    padding: 16px 24px 0 24px;
}

#reportFilterModal .filter-title {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

#reportFilterModal h5 {
    flex: 1;
    margin: 0;
    color: #1976d2;
    font-weight: 500;
    font-size: 1.2rem;
}

#reportFilterModal .filter-mode-chip {
    margin: 0 0 12px 0;
    font-size: 12px;
    height: 24px;
    line-height: 24px;
}

#reportFilterModal .filter-mode-chip i {
    font-size: 14px;
    line-height: 24px;
    margin-right: 4px;
}

#reportFilterModal .modal-footer {
    display: flex;
    justify-content: space-between;
    padding: 4px 24px;
}

#reportFilterModal .modal-footer button {
    margin: 0;
    padding: 0 12px;
    height: 36px;
    line-height: 36px;
}

#reportFilterModal .modal-footer button i {
    font-size: 18px;
    line-height: 36px;
    margin-right: 4px;
}

#reportFilterModal .filter-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

#reportFilterModal .filter-actions .filter-mode-chip {
    margin: 0;
}

#reportFilterModal .filter-actions #generateReportBtn {
    height: 24px;
    line-height: 24px;
    padding: 0 12px;
}

#reportFilterModal .filter-actions #generateReportBtn i {
    font-size: 16px;
    line-height: 24px;
    margin-right: 4px;
} 