.trend-search-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.trend-search-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.trend-search-input {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.85rem;
    min-width: 220px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.trend-search-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.trends-summary {
    margin-top: 0;
    margin-bottom: 24px;
}

.trends-filter-info {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-badge {
    background: #3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.trends-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.metric-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.metric-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    color: #4338ca;
    border-radius: 12px;
}

.metric-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.6;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.metric-content {
    flex: 1;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.metric-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

/* Enhanced table styling */
.enhanced-trends-table {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.trends-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.trends-table th {
    background: #f8fafc;
    color: #374151;
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    border-bottom: 2px solid #e5e7eb;
}

.trends-table td {
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.trends-table tr:hover {
    background: #f8fafc;
}

.fine-count-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.count-number {
    font-weight: 600;
    color: #1e293b;
}

.trend-up {
    color: #10b981;
    font-size: 0.75rem;
    font-weight: 500;
}

.trend-down {
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 500;
}

.trend-stable,
.trend-flat {
    color: #6b7280;
    font-size: 0.75rem;
    font-weight: 500;
}

.risk-score-bar {
    position: relative;
    background: #f1f5f9;
    border-radius: 8px;
    height: 24px;
    min-width: 80px;
    overflow: hidden;
}

.risk-score-fill {
    background: linear-gradient(90deg, #10b981 0%, #f59e0b 50%, #ef4444 100%);
    height: 100%;
    transition: width 0.3s ease;
    border-radius: 8px;
}

.risk-score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
    font-weight: 600;
    color: #1e293b;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.data-table th {
    background: #f8fafc;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 2px solid #e5e7eb;
}

.data-table td {
    padding: 15px;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: top;
}

.data-table tr:hover {
    background: #f9fafb;
}

.fine-amount {
    font-weight: 700;
    color: #059669;
}

.fine-reference {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.875rem;
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 4px;
}

.breach-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.breach-tag {
    background: #fef3c7;
    color: #92400e;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.risk-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.risk-high {
    background: #fee2e2;
    color: #dc2626;
}

.risk-medium {
    background: #fef3c7;
    color: #d97706;
}

.risk-low {
    background: #d1fae5;
    color: #065f46;
}

.loading-state {
    text-align: center;
    padding: 40px;
    color: #6b7280;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #dc2626;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.error-state {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.trends-chart {
    background: #f9fafb;
    border-radius: 8px;
    padding: 20px;
    color: #374151;
}

.trend-summary {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.trend-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.trend-stat {
    text-align: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.trend-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 5px;
}

.trend-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.trend-breakdown h5 {
    margin-bottom: 15px;
    color: #374151;
    font-weight: 600;
}

.trend-periods {
    display: grid;
    gap: 10px;
}

.trend-period {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 15px;
    padding: 12px 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    align-items: center;
}

.period-name {
    font-weight: 600;
    color: #374151;
}

.period-count {
    color: #6b7280;
    font-size: 0.875rem;
}

.period-amount {
    font-weight: 600;
    color: #059669;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Fines Timeline Section */
.fines-timeline-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
}

.timeline-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: linear-gradient(180deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 2px;
}

.timeline-bars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.timeline-item {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 10px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
    overflow: hidden;
}

.timeline-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.timeline-item[data-period="30"]::before {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.timeline-item[data-period="60"]::before {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.timeline-item[data-period="90"]::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.timeline-item[data-period="ytd"]::before {
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

.timeline-period-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 8px;
}

.timeline-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.timeline-count {
    font-size: 0.875rem;
    color: #64748b;
}

.timeline-progress {
    margin-top: 12px;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    overflow: hidden;
}

.timeline-progress-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease;
}

.timeline-item[data-period="30"] .timeline-progress-fill {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.timeline-item[data-period="60"] .timeline-progress-fill {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.timeline-item[data-period="90"] .timeline-progress-fill {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.timeline-item[data-period="ytd"] .timeline-progress-fill {
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

/* Clickable Stat Cards */
.stat-card.clickable {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.stat-card.clickable:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
}

.stat-card.clickable::after {
    content: 'Click to view details';
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 0.65rem;
    color: #94a3b8;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.stat-card.clickable:hover::after {
    opacity: 1;
}

/* Enforcement Modal */
.enforcement-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(4px);
}

.enforcement-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.enforcement-modal {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.enforcement-modal-overlay.active .enforcement-modal {
    transform: scale(1) translateY(0);
}

.enforcement-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.enforcement-modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.enforcement-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    color: #64748b;
    transition: background 0.2s ease, color 0.2s ease;
}

.enforcement-modal-close:hover {
    background: #fee2e2;
    color: #dc2626;
}

.enforcement-modal-body {
    padding: 24px;
    overflow-y: auto;
    max-height: calc(85vh - 140px);
}

.enforcement-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: #f8fafc;
}

/* Firm Cards in Modal */
.firm-cards-grid {
    display: grid;
    gap: 16px;
}

.firm-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.firm-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #3b82f6;
}

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

.firm-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.repeat-badge {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

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

.firm-stat {
    text-align: center;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.firm-stat-label {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.firm-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.firm-stat-value.amount {
    color: #059669;
}

.firm-timeline {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
}

.firm-timeline-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.timeline-entry {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
}

.timeline-entry:last-child {
    border-bottom: none;
}

.timeline-date {
    font-size: 0.85rem;
    color: #64748b;
}

.timeline-breach {
    font-size: 0.85rem;
    color: #374151;
}

.timeline-fine-amount {
    font-size: 0.9rem;
    font-weight: 600;
    color: #059669;
}

.view-notice-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: #3b82f6;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.view-notice-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Fines List in Modal */
.fines-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fine-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    align-items: center;
}

.fine-item-date {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.fine-item-firm {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
}

.fine-item-amount {
    font-size: 1rem;
    font-weight: 700;
    color: #059669;
}

/* Empty State */
.modal-empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #64748b;
}

.modal-empty-state svg {
    width: 48px;
    height: 48px;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.modal-empty-state p {
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .header-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-filters {
        grid-template-columns: 1fr;
    }

    .chart-wrapper canvas {
        height: 240px !important;
    }

    .playbook-grid {
        grid-template-columns: 1fr;
    }

    .data-table {
        font-size: 0.875rem;
    }

    .data-table th,
    .data-table td {
        padding: 10px 8px;
    }

    .timeline-bars {
        grid-template-columns: repeat(2, 1fr);
    }

    .firm-stats {
        grid-template-columns: 1fr;
    }

    .fine-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .enforcement-modal {
        width: 95%;
        max-height: 90vh;
    }
}

/* Fines Database Styles */
.fines-database-section .section-subtitle {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 4px;
}

.fines-database-filters {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end;
}

.filter-row + .filter-row {
    margin-top: 16px;
}

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

.filter-group label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #64748b;
}

.filter-input,
.filter-select {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.85rem;
    min-width: 180px;
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.filter-input-small {
    min-width: 120px;
}

.filter-actions {
    flex-direction: row;
    gap: 8px;
    margin-left: auto;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: all 0.15s ease;
}

.filter-btn:hover {
    background: #f1f5f9;
    border-color: #9ca3af;
}

.filter-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-color: transparent;
}

.filter-btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-color: transparent;
}

.filter-btn svg {
    flex-shrink: 0;
}

/* Fines Table */
.fines-table {
    width: 100%;
    border-collapse: collapse;
}

.fines-table th {
    background: #f8fafc;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #64748b;
    text-align: left;
    padding: 12px 16px;
    border-bottom: 2px solid #e2e8f0;
}

.fines-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

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

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

.col-date { width: 100px; }
.col-firm { min-width: 200px; }
.col-amount { width: 120px; text-align: right; }
.col-breach { min-width: 150px; }
.col-risk { width: 100px; }
.col-action { width: 100px; }

.view-link {
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.85rem;
}

.view-link:hover {
    text-decoration: underline;
}

/* Risk Badges */
.risk-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.risk-high {
    background: #fef2f2;
    color: #dc2626;
}

.risk-medium {
    background: #fffbeb;
    color: #d97706;
}

.risk-low {
    background: #f0fdf4;
    color: #16a34a;
}

.risk-unknown {
    background: #f1f5f9;
    color: #64748b;
}

/* Pagination */
.fines-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid #e2e8f0;
    margin-top: 16px;
}

.pagination-info {
    font-size: 0.85rem;
    color: #64748b;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    font-size: 0.85rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: all 0.15s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: #f1f5f9;
    border-color: #9ca3af;
}

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

.pagination-pages {
    display: flex;
    gap: 4px;
}

.page-btn {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: white;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.15s ease;
}

.page-btn:hover {
    background: #f1f5f9;
}

.page-btn.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.pagination-size {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #64748b;
}

.pagination-select {
    padding: 4px 8px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* Fine Details Modal */
.fine-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-row {
    display: flex;
    gap: 16px;
}

.detail-row-full {
    flex-direction: column;
    gap: 8px;
}

.detail-label {
    min-width: 140px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value {
    color: #1e293b;
    font-size: 0.95rem;
}

.detail-summary {
    background: #f8fafc;
    padding: 12px 16px;
    border-radius: 8px;
    line-height: 1.6;
    margin: 0;
}

.detail-link {
    color: #3b82f6;
    text-decoration: none;
}

.detail-link:hover {
    text-decoration: underline;
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .filter-row {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        width: 100%;
    }

    .filter-input,
    .filter-select {
        min-width: 100%;
    }

    .filter-actions {
        margin-left: 0;
        flex-wrap: wrap;
    }

    .fines-pagination {
        flex-direction: column;
        gap: 16px;
    }

    .fines-table {
        display: block;
        overflow-x: auto;
    }
}
