/* ============================================
   Filings Page - Professional SEC Filing Dashboard
============================================ */

.filings-container {
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ============================================
   Header
============================================ */

.fil-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.fil-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fil-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fil-last-scan {
  font-size: var(--t-xs);
  color: #64748b;
}

.fil-header-actions {
  display: flex;
  gap: 8px;
}

/* ============================================
   Tabs Navigation
============================================ */

.fil-tabs {
  display: flex;
  gap: 4px;
}

.fil-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #64748b;
  font-size: var(--t-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.fil-tab:hover {
  background: #f8fafc;
  color: #1e293b;
}

.fil-tab.active {
  background: #6366f1;
  border-color: #6366f1;
  color: white;
}

.fil-tab i {
  font-size: 12px;
}

/* Tab Content */

.fil-tab-content {
  display: none;
}

.fil-tab-content.active {
  display: block;
}

/* ============================================
   Dashboard Stats
============================================ */

.fil-dashboard {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.fil-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.fil-stat:hover {
  border-color: #6366f1;
  background: #f8fafc;
}

.fil-stat-icon {
  font-size: 24px;
  opacity: 0.8;
}

.fil-stat-content {
  flex: 1;
  min-width: 0;
}

.fil-stat-value {
  font-size: var(--t-2xl);
  font-weight: 700;
  color: #1e293b;
  line-height: 1;
}

.fil-stat-label {
  font-size: var(--t-xs);
  color: #64748b;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fil-stat-total {
  background: #f1f5f9;
}

.fil-stat-total .fil-stat-value {
  color: #6366f1;
}

/* ============================================
   Holdings Summary Stats
============================================ */

.fil-holdings-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.fil-summary-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  text-align: center;
}

.fil-summary-value {
  font-size: var(--t-2xl);
  font-weight: 700;
  color: #6366f1;
  line-height: 1;
}

.fil-summary-label {
  font-size: var(--t-xs);
  color: #64748b;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   Filter Toolbar
============================================ */

.fil-toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.fil-search {
  flex: 1;
  min-width: 200px;
  max-width: 400px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.fil-search i {
  color: #64748b;
  font-size: var(--t-sm);
}

.fil-search input {
  flex: 1;
  padding: 10px 0;
  background: transparent;
  border: none;
  color: #1e293b;
  font-size: var(--t-sm);
}

.fil-search input:focus {
  outline: none;
}

.fil-search input::placeholder {
  color: #64748b;
}

.fil-filter-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.fil-select {
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #1e293b;
  font-size: var(--t-sm);
  cursor: pointer;
  min-width: 120px;
}

.fil-select:focus {
  outline: none;
  border-color: #6366f1;
}

/* ============================================
   Section Styles
============================================ */

.fil-section {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.fil-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.fil-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--t-sm);
  font-weight: 600;
  color: #1e293b;
}

.fil-section-title .fil-chevron {
  font-size: 12px;
  color: #64748b;
  transition: transform 0.2s;
}

.fil-section-collapsible .fil-section-toggle {
  cursor: pointer;
}

.fil-section-content.fil-collapsed {
  display: none;
}

.fil-count {
  font-size: var(--t-xs);
  font-weight: 500;
  padding: 2px 8px;
  background: #e2e8f0;
  border-radius: 9999px;
  color: #475569;
}

.fil-view-toggle {
  display: flex;
  gap: 4px;
}

.fil-view-btn {
  padding: 6px 10px;
  background: transparent;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
}

.fil-view-btn:hover {
  background: #f8fafc;
  color: #1e293b;
}

.fil-view-btn.active {
  background: #6366f1;
  border-color: #6366f1;
  color: white;
}

/* ============================================
   Table Styles
============================================ */

.fil-table-wrapper {
  overflow-x: auto;
  max-height: 600px;
  overflow-y: auto;
}

.fil-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--t-sm);
}

.fil-table thead {
  position: sticky;
  top: 0;
  z-index: 1;
}

.fil-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.fil-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
  color: #1e293b;
}

.fil-row {
  cursor: pointer;
  transition: background 0.15s;
}

.fil-row:hover {
  background: #f8fafc;
}

.fil-row.fil-priority-critical {
  border-left: 3px solid #ef4444;
}

.fil-row.fil-priority-high {
  border-left: 3px solid #f59e0b;
}

.fil-th-type { width: 120px; }
.fil-th-fund { min-width: 200px; }
.fil-th-ticker { width: 100px; }
.fil-th-date { width: 120px; }
.fil-th-priority { width: 100px; }
.fil-th-actions { width: 50px; }

.fil-td-fund {
  font-weight: 500;
}

.fil-td-ticker {
  font-family: 'SF Mono', Monaco, Consolas, monospace;
  font-weight: 600;
  color: #6366f1;
}

.fil-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: #f1f5f9;
  border-radius: 4px;
  font-size: var(--t-xs);
  font-weight: 500;
}

.fil-priority-badge {
  padding: 2px 6px;
  border-radius: 4px;
  font-size: var(--t-xs);
  font-weight: 600;
  text-transform: uppercase;
}

.fil-priority-critical .fil-priority-badge,
.fil-priority-badge.fil-priority-critical {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.fil-priority-high .fil-priority-badge,
.fil-priority-badge.fil-priority-high {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.fil-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  color: #64748b;
  transition: all 0.2s;
}

.fil-link-btn:hover {
  background: #f1f5f9;
  color: #6366f1;
}

/* ============================================
   Holdings Table
============================================ */

.fil-holdings-table {
  width: 100%;
}

.fil-holding-row {
  cursor: pointer;
  transition: background 0.15s;
}

.fil-holding-row:hover {
  background: #f8fafc;
}

.fil-th-name { min-width: 180px; }
.fil-th-funds { width: 90px; text-align: center; }
.fil-th-shares { width: 120px; text-align: right; }
.fil-th-value { width: 120px; text-align: right; }
.fil-th-trend { width: 80px; text-align: center; }

.fil-td-name {
  color: #475569;
  font-size: var(--t-xs);
}

.fil-td-funds {
  text-align: center;
  font-weight: 600;
}

.fil-td-shares,
.fil-td-value {
  text-align: right;
  font-family: 'SF Mono', Monaco, Consolas, monospace;
}

.fil-td-trend {
  text-align: center;
  font-size: var(--t-xs);
  font-weight: 500;
}

/* Trend Indicators */

.fil-trend-up {
  color: #10b981;
}

.fil-trend-down {
  color: #ef4444;
}

/* New Position Badge */

.fil-new-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 5px;
  background: rgba(99, 102, 241, 0.15);
  color: #6366f1;
  font-size: 9px;
  font-weight: 700;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ============================================
   Cards View
============================================ */

.fil-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  padding: 16px;
}

.fil-card {
  padding: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.fil-card:hover {
  border-color: #6366f1;
  transform: translateY(-2px);
}

.fil-card.fil-priority-critical {
  border-left: 3px solid #ef4444;
}

.fil-card.fil-priority-high {
  border-left: 3px solid #f59e0b;
}

.fil-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.fil-card-fund {
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 4px;
}

.fil-card-ticker {
  font-family: 'SF Mono', Monaco, Consolas, monospace;
  font-weight: 600;
  color: #6366f1;
  font-size: var(--t-lg);
}

.fil-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #e2e8f0;
}

.fil-card-date {
  font-size: var(--t-xs);
  color: #64748b;
}

/* ============================================
   PIPE Table
============================================ */

.fil-pipe-table .fil-pipe-ticker {
  font-family: 'SF Mono', Monaco, Consolas, monospace;
  color: #6366f1;
}

.fil-pipe-row {
  cursor: pointer;
  transition: background 0.15s;
}

.fil-pipe-row:hover {
  background: #f8fafc;
}

.fil-positive { color: #10b981; }
.fil-negative { color: #ef4444; }

.fil-status-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: var(--t-xs);
  font-weight: 500;
  background: #f1f5f9;
}

.fil-status-badge.fil-status-warning {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.fil-status-badge.fil-status-critical {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.fil-status-badge.fil-status-done {
  background: rgba(34, 197, 94, 0.15);
  color: #10b981;
}

/* ============================================
   Funds Grid
============================================ */

.fil-funds-grid {
  padding: 16px;
}

.fil-fund-type-group {
  margin-bottom: 16px;
}

.fil-fund-type-group:last-child {
  margin-bottom: 0;
}

.fil-fund-type-header {
  font-size: var(--t-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #64748b;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #e2e8f0;
}

.fil-fund-type-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fil-fund-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  font-size: var(--t-xs);
  color: #475569;
  cursor: pointer;
  transition: all 0.2s;
}

.fil-fund-chip:hover {
  border-color: #6366f1;
  color: #1e293b;
}

.fil-fund-chip.fil-fund-priority {
  border-color: #f59e0b;
}

.fil-fund-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 1px 4px;
  background: #f59e0b;
  color: #fff;
  border-radius: 3px;
}

/* ============================================
   Buttons
============================================ */

.fil-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #1e293b;
  font-size: var(--t-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.fil-btn:hover {
  background: #f8fafc;
  border-color: #64748b;
}

.fil-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.fil-btn-primary {
  background: #6366f1;
  border-color: #6366f1;
  color: white;
}

.fil-btn-primary:hover {
  background: #4f46e5;
}

.fil-btn-secondary {
  background: #f1f5f9;
  color: #475569;
}

.fil-btn-sm {
  padding: 4px 10px;
  font-size: var(--t-xs);
}

.fil-btn-block {
  width: 100%;
  justify-content: center;
  margin-top: 16px;
}

/* ============================================
   Modal
============================================ */

.fil-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.fil-modal {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.fil-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.fil-modal-header h3 {
  margin: 0;
  font-size: var(--t-lg);
  font-weight: 600;
}

.fil-modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
}

.fil-modal-close:hover {
  background: #f1f5f9;
  color: #1e293b;
}

.fil-modal-body {
  padding: 20px;
  overflow-y: auto;
}

.fil-modal-grid {
  display: grid;
  gap: 10px;
}

.fil-modal-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

.fil-modal-row:last-child {
  border-bottom: none;
}

.fil-modal-label {
  color: #64748b;
  font-size: var(--t-sm);
}

.fil-modal-section {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.fil-modal-section h4 {
  margin: 0 0 12px;
  font-size: var(--t-sm);
  font-weight: 600;
  color: #475569;
}

/* Ticker Holdings Modal */

.fil-modal-ticker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.fil-modal-ticker {
  font-size: var(--t-2xl);
  font-weight: 700;
  font-family: 'SF Mono', Monaco, Consolas, monospace;
  color: #6366f1;
}

.fil-modal-period {
  font-size: var(--t-xs);
  color: #64748b;
}

.fil-modal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.fil-modal-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  background: #f1f5f9;
  border-radius: 8px;
  text-align: center;
}

.fil-modal-stat-value {
  font-size: var(--t-lg);
  font-weight: 700;
  color: #1e293b;
}

.fil-modal-stat-label {
  font-size: var(--t-xs);
  color: #64748b;
  margin-top: 4px;
}

/* Holders & Changes Lists */

.fil-holdings-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fil-holding-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 10px;
  background: #f1f5f9;
  border-radius: 4px;
  font-size: var(--t-xs);
}

.fil-holding-row span:first-child {
  font-family: 'SF Mono', Monaco, Consolas, monospace;
  font-weight: 600;
}

.fil-holders-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fil-holder-row {
  display: grid;
  grid-template-columns: 1fr 90px 90px;
  gap: 12px;
  padding: 8px 10px;
  background: #f1f5f9;
  border-radius: 4px;
  font-size: var(--t-xs);
  align-items: center;
}

.fil-holder-name {
  color: #1e293b;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fil-holder-shares {
  text-align: right;
  font-family: 'SF Mono', Monaco, Consolas, monospace;
  color: #475569;
}

.fil-holder-value {
  text-align: right;
  font-family: 'SF Mono', Monaco, Consolas, monospace;
  color: #1e293b;
  font-weight: 600;
}

.fil-changes-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fil-change-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  background: #f1f5f9;
  border-radius: 4px;
  font-size: var(--t-xs);
  border-left: 3px solid transparent;
}

.fil-change-new {
  border-left-color: #6366f1;
  background: rgba(99, 102, 241, 0.08);
}

.fil-change-exit {
  border-left-color: #ef4444;
  background: rgba(239, 68, 68, 0.08);
}

.fil-change-up {
  border-left-color: #10b981;
}

.fil-change-down {
  border-left-color: #f59e0b;
}

.fil-more {
  text-align: center;
  padding: 8px;
  color: #64748b;
  font-size: var(--t-xs);
}

.fil-patterns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.fil-pattern-chip {
  padding: 4px 10px;
  background: #f1f5f9;
  border-radius: 4px;
  font-size: var(--t-xs);
  color: #475569;
}

.fil-sellers-list {
  margin: 0;
  padding-left: 20px;
  font-size: var(--t-sm);
}

.fil-sellers-list li {
  margin-bottom: 4px;
}

.fil-recent-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fil-recent-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 10px;
  background: #f1f5f9;
  border-radius: 4px;
  font-size: var(--t-xs);
}

/* ============================================
   Scan Options Modal
============================================ */

.fil-scan-modal {
  max-width: 420px;
}

.fil-scan-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fil-option-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fil-option-group label {
  font-size: var(--t-sm);
  font-weight: 500;
  color: #475569;
}

.fil-option-group select {
  padding: 10px 12px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  color: #1e293b;
  font-size: var(--t-sm);
}

.fil-option-checkbox {
  flex-direction: row;
  align-items: center;
}

.fil-option-checkbox label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #1e293b;
}

.fil-option-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #6366f1;
}

.fil-scan-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

/* ============================================
   Toast Notifications
============================================ */

.fil-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #1e293b;
  font-size: var(--t-sm);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1100;
  white-space: pre-line;
}

.fil-toast-show {
  transform: translateY(0);
  opacity: 1;
}

.fil-toast-success {
  border-color: #10b981;
}

.fil-toast-error {
  border-color: #ef4444;
}

/* ============================================
   Empty & Loading States
============================================ */

.fil-empty {
  padding: 40px 20px;
  text-align: center;
  color: #64748b;
}

.fil-empty-holdings {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 20px;
}

.fil-empty-holdings i {
  font-size: 48px;
  color: #cbd5e1;
}

.fil-empty-holdings p {
  margin: 0;
  color: #64748b;
}

.fil-empty-sub {
  font-size: var(--t-xs);
  text-align: center;
  line-height: 1.5;
  max-width: 300px;
}

.fil-loading {
  padding: 40px 20px;
  text-align: center;
  color: #64748b;
}

.fil-loading i {
  margin-right: 8px;
}

.fil-error {
  padding: 40px 20px;
  text-align: center;
  color: #ef4444;
}

/* ============================================
   Responsive
============================================ */

@media (max-width: 1200px) {
  .fil-dashboard {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .fil-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }

  .fil-holdings-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .fil-toolbar {
    flex-direction: column;
  }

  .fil-search {
    max-width: 100%;
  }

  .fil-modal-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .filings-container {
    padding: 12px;
  }

  .fil-header {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .fil-tabs {
    width: 100%;
    justify-content: center;
  }

  .fil-tab {
    flex: 1;
    justify-content: center;
  }

  .fil-header-right {
    justify-content: center;
  }

  .fil-dashboard {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .fil-stat {
    padding: 12px;
  }

  .fil-stat-icon {
    font-size: 20px;
  }

  .fil-stat-value {
    font-size: var(--t-xl);
  }

  .fil-holdings-summary {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .fil-summary-stat {
    padding: 12px;
  }

  .fil-summary-value {
    font-size: var(--t-xl);
  }

  .fil-filter-group {
    flex-direction: column;
    width: 100%;
  }

  .fil-select {
    width: 100%;
  }

  .fil-table th,
  .fil-table td {
    padding: 10px 12px;
  }

  .fil-th-fund,
  .fil-th-priority,
  .fil-th-name {
    display: none;
  }

  .fil-td-fund,
  .fil-td-priority,
  .fil-td-name {
    display: none;
  }

  .fil-modal {
    max-height: 90vh;
  }

  .fil-toast {
    left: 20px;
    right: 20px;
    bottom: 10px;
  }

  .fil-holder-row {
    grid-template-columns: 1fr 80px;
  }

  .fil-holder-shares {
    display: none;
  }
}
