/* Technician List Styles */

.tech-list-header {
    background: #fff;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.tech-list-header .back-btn { font-size: 18px; color: #333; }
.tech-list-header .search-box {
    flex: 1;
    background: #f5f5f5;
    height: 36px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
}

.tech-list-header .search-box i { color: #999; font-size: 14px; }
.tech-list-header .search-box input {
    background: transparent;
    border: none;
    outline: none;
    font-size: 13px;
    width: 100%;
}

.app-container { background: #f8f9fa; }

.tech-filters {
    display: flex;
    background: #fff;
    padding: 12px 16px;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid #f5f5f5;
}

.tech-filters::-webkit-scrollbar { display: none; }

.filter-item {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
    padding-bottom: 4px;
    position: relative;
}

.filter-item.active {
    color: #007AFF;
    font-weight: 600;
}

.filter-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #007AFF;
}

.tech-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tech-long-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.tech-long-card:active { background: #f9f9f9; }

.t-avatar {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
}

.t-main { flex: 1; }

.t-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.t-name { font-size: 16px; font-weight: 600; color: #333; }
.v-badge {
    font-size: 10px;
    color: #007AFF;
    background: rgba(0,122,255,0.1);
    padding: 1px 6px;
    border-radius: 10px;
    margin-left: 4px;
    font-weight: normal;
}

.t-price { font-size: 16px; color: #e74c3c; font-weight: 700; }
.t-price span { font-size: 11px; color: #999; font-weight: normal; }

.t-tags { display: flex; gap: 6px; margin-bottom: 8px; }
.t-tags .tag {
    font-size: 10px;
    color: #007AFF;
    background: rgba(0,122,255,0.05);
    padding: 2px 6px;
    border-radius: 4px;
}

.t-tags .tag.green { color: #2ecc71; background: rgba(46,204,113,0.1); }
.t-tags .tag.orange { color: #e67e22; background: rgba(230,126,34,0.1); }
.t-tags .tag.purple { color: #9b59b6; background: rgba(155,89,182,0.1); }

.t-stats {
    display: flex;
    gap: 12px;
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

.t-stats .rating { color: #f39c12; font-weight: 600; }

.t-intro {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
