.search-hit {
  background: #fde68a;
  color: #78350f;
  font-weight:700;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
        .comparison-table-wrapper {
            overflow-x: auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }
        .comparison-table th {
            background: #f8fafc;
            padding: 20px;
            font-weight: 600;
            color: #1e293b;
            border-bottom: 2px solid #e2e8f0;
        }
        .comparison-table td {
            padding: 20px;
            border-bottom: 1px solid #e2e8f0;
            color: #475569;
            line-height: 1.6;
        }
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        .feature-name {
            font-weight: 600;
            color: #1e293b !important;
            background: #f8fafc;
            width: 150px;
        }
        @media (max-width: 768px) {
            .comparison-table thead {
                display: none;
            }
            .comparison-table, .comparison-table tbody, .comparison-table tr, .comparison-table td {
                display: block;
                width: 100%;
            }
            .comparison-table tr {
                margin-bottom: 20px;
                border-bottom: 2px solid #e2e8f0;
                padding-bottom: 10px;
            }
            .comparison-table td {
                padding: 10px 20px;
                border-bottom: none;
                position: relative;
                padding-left: 40%;
            }
            .comparison-table td::before {
                content: attr(data-label);
                position: absolute;
                left: 20px;
                width: 35%;
                font-weight: 600;
                color: #1e293b;
            }
            .feature-name {
                background: #2563eb;
                color: white !important;
                width: 100% !important;
                padding: 10px 20px !important;
            }
            /* Alternative mobile layout for better readability */
            .comparison-table td {
                padding-left: 20px;
            }
            .comparison-table td::before {
                display: block;
                position: static;
                width: 100%;
                margin-bottom: 5px;
                font-size: 0.8rem;
                text-transform: uppercase;
                color: #64748b;
            }
        }
        
        /* Eklenen arama kutusu ve grid stilleri */
        .controls-card {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff;
            padding: 15px 20px;
            border-radius: 12px;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
            margin-top: 30px;
            margin-bottom: 20px;
            gap: 15px;
            flex-wrap: wrap;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: #f1f5f9;
            padding: 10px 15px;
            border-radius: 8px;
            flex: 1;
            min-width: 250px;
        }
        .search-box input {
            border: none;
            background: transparent;
            outline: none;
            width: 100%;
            margin-left: 10px;
            font-family: inherit;
            font-size: 1rem;
            color: #334155;
        }
        .autocomplete-container {
            position: relative;
        }
        .autocomplete-items {
            position: absolute;
            border: 1px solid #d4d4d4;
            border-top: none;
            z-index: 99;
            top: 100%;
            left: 0;
            right: 0;
            background-color: #fff;
            max-height: 250px;
            overflow-y: auto;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
            display: none;
        }
        .autocomplete-item {
            padding: 10px 15px;
            cursor: pointer;
            border-bottom: 1px solid #e2e8f0;
            color: #1e293b;
            font-size: 0.95rem;
            text-transform: capitalize;
        }
        .autocomplete-item:last-child {
            border-bottom: none;
        }
        .autocomplete-item:hover {
            background-color: #f1f5f9;
        }
        .sort-buttons {
            display: flex;
            gap: 10px;
        }
        .sort-btn {
            padding: 8px 15px;
            border: 1px solid #e2e8f0;
            background: #fff;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 500;
            color: #64748b;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .sort-btn.active, .sort-btn:hover {
            background: #2563eb;
            color: #fff;
            border-color: #2563eb;
        }
        .found-count {
            margin-bottom: 20px;
            font-size: 0.95rem;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .dolmus-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        @media (max-width: 768px) {
            .dolmus-grid {
                grid-template-columns: 1fr;
            }
        }
        .dolmus-card {
            display: flex;
            align-items: center;
            background: #fff;
            padding: 15px;
            border-radius: 12px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
            gap: 15px;
        }
        .dolmus-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-color: #2563eb;
        }
        @keyframes blinkMatch {
            0% { background-color: #fff; border-color: #e2e8f0; }
            30% { background-color: #f0fdf4; border-color: #10b981; }
            100% { background-color: #fff; border-color: #e2e8f0; }
        }
        .blink-highlight {
            animation: blinkMatch 1.5s ease-in-out;
            border-color: #10b981 !important;
        }
        .d-match {
            font-size: 0.8rem;
            color: #059669;
            margin-top: 5px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .d-no {
            background: #2563eb;
            color: #fff;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 8px;
            text-align: center;
            min-width: 60px;
            font-size: 0.9rem;
            line-height: 1.2;
        }
        .d-route {
            flex: 1;
            font-weight: 600;
            color: #1e293b;
            font-size: 0.95rem;
            line-height: 1.4;
        }
        .d-arrow {
            color: #94a3b8;
        }
        .info-alert {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 25px;
            display: flex;
            gap: 20px;
        }

.how-to-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; } .how-to-card { background: white; border-radius: 18px; padding: 1.5rem; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.05); display: flex; flex-direction: column; gap: 0.8rem; transition: transform 0.2s ease, box-shadow 0.2s ease; } .how-to-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); } .how-to-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: white; } .how-to-link { color: var(--primary); font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; margin-top: auto; } .how-to-link:hover { text-decoration: underline; }
