.laboratory-search-container {
    background: #fff;
    border-radius: 18px;
    padding: 5px 24px;
    max-width: 1400px;
    margin: 30px auto;
    /*box-shadow: 0 2px 16px rgba(0,0,0,0.04);*/
}

.laboratory-search-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2746;
    margin-bottom: 30px;
}

/* Ana düzen: Sol sidebar + Sağ içerik */
.search-section {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

/* Sol taraf - Arama ve filtreler */
.search-sidebar {
    width: 300px;
    flex-shrink: 0;
}

/* Sağ taraf - Sonuçlar */
.search-content {
    flex: 1;
    min-width: 0;
}

.search-bar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.search-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: var(--tlm-radius-lg, 0.75rem);
    padding: 18px;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}

    .search-row input[type="text"] {
        width: 100%;
        height: 48px;
        padding: 0 16px;
        font-size: 1rem;
        border-radius: 8px;
        box-sizing: border-box;
        border: 1px solid #e5e7eb;
        color: #222;
        background: #ffffff;
        text-transform: none;
        font-family: 'Roboto', sans-serif;
    }

    .search-row input[type="text"]:focus {
        outline: none;
        border-color: #074d78;
        box-shadow: 0 0 0 1px #074d78;
    }

.search-row button[type="submit"] {
    width: 100%;
    height: 48px;
    font-size: 0.8rem;
    border-radius: 8px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background: #074d78 !important;
    color: #fff !important;
    border: none !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
}

.search-row button[type="submit"]:hover {
    background: #053a5a !important;
}

.filters {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.active-filters {

    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    margin: 0 0 15px 0;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.clear-filters-btn {
    width: 100%;
    padding: 8px;
    background: #fff;
    color: #074d78;
    border: 1.5px solid #074d78;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.clear-filters-btn:hover {
    background: #074d78;
    color: #fff;
}

.laboratory-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.laboratory-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--tlm-radius-lg, 0.75rem);
    padding: 22px 28px;
    gap: 24px;
    transition: box-shadow 0.25s ease;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.laboratory-item:hover {
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.09);
}

.laboratory-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--tlm-radius-md-px, 8px);
    background: radial-gradient(circle at top left, #eff6ff, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 12px;
    overflow: hidden;
    text-align: center;
}

.laboratory-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.laboratory-thumb i {
    color: #074d78;
    font-size: 20px;
}

.laboratory-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #074d78;
}

.laboratory-item:hover .laboratory-title {
    text-decoration: underline;
}

.laboratory-desc {
    font-size: 0.8rem;
    color: #2b303b;
    text-transform: uppercase;
    /*letter-spacing: 0.08em;*/
    font-weight: 500;
    margin-top: 10px;
}

.laboratory-lab {
    font-size: 1rem;
    color: #1f2937;
    margin-top: 0;
}

.laboratory-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.laboratory-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 8px 16px;
    margin-top: 8px;
}

.laboratory-meta-item {
    font-size: 0.95rem;
    color: #1f2937;
}

.laboratory-meta-label {
    font-weight: 500;
    color: #0f172a;
}

.laboratory-meta-value {
    color: #737b8c;
    margin-left: 4px;
}

.laboratory-arrow {
    font-size: 1.6rem;
    color: #074d78;
    margin-left: 16px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.laboratory-item:hover .laboratory-arrow {
    opacity: 1;
}

.btn-blue {
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 22px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.btn-blue:hover,
.btn-blue:focus {
    background: #1746a2;
    color: #fff;
}

.btn-outline {
    background: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
    border-radius: 8px;
    padding: 8px 22px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.laboratory-search-container .filters select {
    appearance: auto !important;
    -webkit-appearance: auto !important;
    -moz-appearance: auto !important;
    background: #f8fafc !important;
    border: 1.5px solid #dbeafe !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    color: #222 !important;
    width: 100% !important;
    padding: 10px 18px !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    box-shadow: none !important;
    font-weight: 400 !important;
    transition: border 0.2s;
}

.laboratory-search-container .filters select:focus {
    border-color: #2563eb !important;
    outline: none !important;
}

.laboratory-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/*.laboratory-item-link .laboratory-item:hover {
    box-shadow: 0 2px 16px rgba(37,99,235,0.13);
    background: #f5f8ff;
}*/

.search-result-count {
    margin: 0 0 18px 0;
    font-size: 0.9rem;
    color: #1a2746;
    font-weight: 500;
}

.search-result-count b {
    color: #074d78;
}

/* Responsive */
@media (max-width: 1024px) {
    .search-section {
        flex-direction: column;
    }
    
    .search-sidebar {
        width: 100%;
    }
    
    .search-row {
        flex-direction: row;
    }
    
    .search-row button[type="submit"] {
        width: auto;
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .laboratory-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }

    .laboratory-thumb {
        margin: 0 auto;
    }

    .laboratory-info {
        align-items: center;
    }

    .laboratory-meta {
        justify-content: center;
    }

    .laboratory-arrow {
        display: none;
    }
}
