        .deposit-comparison {
            max-width: 1400px;
            margin: 0 auto;
            background: white;
            border-radius: 0;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
            overflow: hidden;
            border: 1px solid #e5e7eb;
        }

        .comparison-header {
            padding: 20px 24px 16px;
            background: white;
            border-bottom: none;
        }

        .top-progress-container {
            width: 100%;
            height: 3px;
            background: #e5e7eb;
            position: relative;
            cursor: pointer;
            margin-top: 16px;
        }

        .top-progress-bar {
            height: 100%;
            background: #2563eb;
            transition: width 0.1s ease-out;
            width: 0%;
            position: relative;
        }

        .top-progress-handle {
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            width: 12px;
            height: 12px;
            background: #2563eb;
            border-radius: 50%;
            border: 2px solid white;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            cursor: grab;
        }

        .top-progress-handle:active {
            cursor: grabbing;
        }

        @media (min-width: 769px) {
            .top-progress-container {
                display: none;
            }
        }

        .comparison-header h2 {
            margin: 0 0 16px 0;
            font-size: 22px;
            font-weight: 600;
            color: #1a202c;
        }

        .filter-controls {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }

        .filter-group {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .filter-label {
            font-size: 14px;
            font-weight: 500;
            color: #4a5568;
        }

        .toggle-group {
            display: inline-flex;
            background: #f3f4f6;
            border-radius: 8px;
            padding: 3px;
            border: 1px solid #e5e7eb;
        }

        .toggle-btn {
            padding: 6px 14px;
            border: none;
            background: transparent;
            color: #6b7280;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            border-radius: 6px;
            transition: all 0.2s ease;
        }

        .toggle-btn.active {
            background: white;
            color: #2563eb;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }

        .currency-select {
            display: flex;
            gap: 6px;
        }

        .currency-btn {
            padding: 6px 12px;
            border: 1px solid #e5e7eb;
            background: white;
            color: #4a5568;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            border-radius: 6px;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .currency-btn:hover {
            border-color: #2563eb;
            background: #eff6ff;
        }

        .currency-btn.active {
            background: #2563eb;
            color: white;
            border-color: #2563eb;
        }

        .table-container {
            overflow-x: auto;
            position: relative;
            scrollbar-width: none;
            -ms-overflow-style: none;
            overscroll-behavior-x: contain;
        }

        .table-container::-webkit-scrollbar {
            display: none;
        }

        .scroll-fade {
            position: absolute;
            top: 0;
            height: 100%;
            width: 60px;
            pointer-events: none;
            z-index: 5;
            transition: opacity 0.3s ease;
        }

        .scroll-fade.left {
            background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
            opacity: 0;
        }

        .scroll-fade.left.visible {
            opacity: 1;
        }

        .scroll-fade.right {
            background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
            opacity: 1;
        }

        .scroll-fade.right.hidden {
            opacity: 0;
        }

        .scroll-progress-container {
            padding: 12px 24px 16px;
            background: white;
            border-top: 1px solid #f3f4f6;
            position: sticky;
            bottom: 0;
            z-index: 8;
        }

        .scroll-progress {
            width: 100%;
            height: 4px;
            background: #e5e7eb;
            border-radius: 2px;
            overflow: hidden;
            position: relative;
        }

        .scroll-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
            border-radius: 2px;
            transition: width 0.1s ease-out;
            width: 0%;
        }

        .scroll-hint {
            text-align: center;
            font-size: 11px;
            color: #9ca3af;
            margin-top: 6px;
            display: none;
        }

        @media (max-width: 768px) {
            .scroll-fade {
                display: block;
            }

            .scroll-hint {
                display: block;
            }

            .scroll-progress-container {
                padding: 10px 16px 12px;
            }
        }

        @media (min-width: 769px) {
            .scroll-fade {
                display: none;
            }

            .scroll-progress-container {
                display: none;
            }
        }

        .comparison-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
        }

        .comparison-table thead {
            background: #f9fafb;
            position: sticky;
            top: 0;
            z-index: 10;
        }

        .comparison-table th {
            padding: 14px 12px;
            text-align: left;
            font-size: 13px;
            font-weight: 600;
            color: #374151;
            border-bottom: 2px solid #e5e7eb;
            white-space: nowrap;
            cursor: pointer;
            user-select: none;
            position: relative;
        }

        .comparison-table th:hover {
            background: #f3f4f6;
        }

        .comparison-table th.sortable:hover::after {
            opacity: 0.3;
        }

        .comparison-table th.sorted-asc::after,
        .comparison-table th.sorted-desc::after {
            opacity: 1 !important;
        }

        .comparison-table th.sorted-asc::after {
            content: '';
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-bottom: 6px solid #2563eb;
        }

        .comparison-table th.sorted-desc::after {
            content: '';
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 6px solid #2563eb;
        }

        .comparison-table th.bank-col {
            min-width: 200px;
            position: sticky;
            left: 0;
            background: #f9fafb;
            z-index: 11;
            border-right: 1px solid #e5e7eb;
        }

        .comparison-table th.period-col {
            text-align: center;
            min-width: 85px;
        }

        .comparison-table th.min-sum-col {
            text-align: right;
            min-width: 110px;
        }

        .comparison-table tbody tr {
            transition: all 0.15s ease;
            border-bottom: 1px solid #f3f4f6;
        }

        .comparison-table tbody tr:hover {
            background: #fafbfc;
        }

        .comparison-table td {
            padding: 14px 12px;
            font-size: 14px;
            border-bottom: 1px solid #f3f4f6;
        }

        .comparison-table td:first-child {
            position: sticky;
            left: 0;
            background: white;
            z-index: 1;
            border-right: 1px solid #f3f4f6;
        }

        .comparison-table tbody tr:hover td:first-child {
            background: #fafbfc;
        }

        .bank-cell {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .bank-logo {
            flex-shrink: 0;
        }

        .bank-info {
            display: flex;
            flex-direction: column;
            gap: 6px;
            min-width: 0;
        }

        .bank-name {
            font-weight: 600;
            color: #1a202c;
            font-size: 14px;
        }

        .bank-rating {
            display: flex;
            align-items: center;
            gap: 2px;
            position: relative;
            cursor: help;
        }

        .bank-rating svg {
            width: 14px;
            height: 14px;
        }

        .rating-tooltip {
            position: absolute;
            bottom: 100%;
            left: 0;
            background: #1f2937;
            color: white;
            padding: 6px 10px;
            border-radius: 6px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.2s ease;
            margin-bottom: 6px;
            z-index: 100;
        }

        .rating-tooltip::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 12px;
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid #1f2937;
        }

        .bank-rating:hover .rating-tooltip {
            opacity: 1;
        }

        .rate-cell {
            text-align: center;
            font-weight: 600;
            font-size: 15px;
            color: #1a202c;
            transition: all 0.2s ease;
            cursor: pointer;
            position: relative;
        }

        .rate-cell:hover {
            background: rgba(37, 99, 235, 0.08) !important;
        }

        .rate-cell.highlighted {
            background: #dcfce7;
            color: #15803d;
            font-weight: 700;
            font-size: 16px;
        }

        .rate-cell.highlighted:hover {
            background: #bbf7d0 !important;
        }

        .rate-cell.no-data {
            color: #d1d5db;
        }

        .rate-cell.best-rate {
            background: #7dd3fc;
            color: #0c4a6e;
            font-weight: 700;
        }

        .rate-cell.best-rate:hover {
            background: #38bdf8 !important;
        }

        .min-sum-cell {
            text-align: right;
            font-weight: 500;
            color: #4a5568;
            font-size: 13px;
        }

        .info-footer {
            padding: 14px 24px;
            background: #f9fafb;
            border-top: 1px solid #e5e7eb;
            font-size: 12px;
            color: #6b7280;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .info-footer svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            margin-top: 1px;
        }

        @media (max-width: 768px) {
            .comparison-header {
                padding: 16px;
            }

            .comparison-header h2 {
                font-size: 18px;
            }

            .filter-controls {
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
            }

            .filter-group {
                flex-direction: column;
                align-items: stretch;
                gap: 6px;
            }

            .toggle-group,
            .currency-select {
                width: 100%;
                justify-content: space-between;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 10px 8px;
                font-size: 13px;
            }

            .bank-name {
                font-size: 13px;
            }

            .rate-cell {
                font-size: 14px;
            }

            .rate-cell.highlighted {
                font-size: 15px;
            }

            .info-footer {
                padding: 12px 16px;
                font-size: 11px;
            }
        }