.experiment-search-container {
    background: #fff;
    border-radius: 18px;
    padding: 5px 24px;
    max-width: 1400px;
    margin: 30px auto;
}

.experiment-search-container h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2746;
    margin-bottom: 30px;
}

.search-section {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.search-sidebar {
    width: 300px;
    flex-shrink: 0;
}

.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-bottom: 15px;
}

.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;
}

.experiment-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.experiment-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--tlm-radius-md, 0.5rem);
    padding: 22px 28px;
    gap: 24px;
    transition: box-shadow 0.25s ease;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.experiment-item:hover {
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.09);
}

.experiment-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;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    padding: 12px;
}

.experiment-thumb {
    color: #074d78;
    font-size: 20px;
}

.experiment-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.experiment-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #074d78;
}

.experiment-item:hover .experiment-title {
    color: #074d78;
    text-decoration: none;
}

.experiment-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 8px 16px;
}

.experiment-meta.stacked {
    grid-template-columns: 1fr;
    gap: 6px;
}

.experiment-meta-item {
    font-size: 0.95rem;
    color: #1f2937;
}

.experiment-meta-label {
    font-weight: 600;
    color: #0f172a;
    margin-right: 4px;
}

.experiment-meta-value {
    color: #074d78;
}

.search-result-count {
    margin: 0 0 18px 0;
    font-size: 0.9rem;
    color: #1a2746;
    font-weight: 500;
}

.search-result-count b {
    color: #074d78;
}

.btn-blue {
    background: #074d78;
    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: #053a5a;
    color: #fff;
}

.btn-outline {
    background: #fff;
    color: #074d78;
    border: 2px solid #074d78;
    border-radius: 8px;
    padding: 8px 22px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

.experiment-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;
}

.experiment-search-container .filters select:focus {
    border-color: #074d78 !important;
    outline: none !important;
}

@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;
    }
}