#tc-search-wrap {
    max-width: 900px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.tc-search-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    background: #f7f7f9;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tc-search-form input,
.tc-search-form select {
    flex: 1;
    min-width: 160px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.tc-search-form button {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.tc-search-form button:hover {
    background: #135e96;
}

.tc-hint {
    color: #666;
    text-align: center;
    padding: 30px 0;
}

.tc-tutor-card {
    display: flex;
    gap: 16px;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.tc-tutor-card img {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    object-fit: cover;
    background: #eee;
}

.tc-tutor-card .tc-tutor-info {
    flex: 1;
}

.tc-tutor-card h4 {
    margin: 0 0 4px 0;
}

.tc-badge-verified {
    display: inline-block;
    background: #e6f5ea;
    color: #00a32a;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 6px;
}

.tc-tutor-meta {
    font-size: 13px;
    color: #666;
    margin: 6px 0;
}

.tc-book-btn {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.tc-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.tc-modal-content {
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.tc-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    cursor: pointer;
    font-size: 22px;
    color: #999;
}

#tc-booking-form label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    font-size: 13px;
}

#tc-booking-form input,
#tc-booking-form select,
#tc-booking-form textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 4px;
    box-sizing: border-box;
}

#tc-booking-form button {
    margin-top: 16px;
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
}

.tc-form-message {
    margin-top: 10px;
    font-weight: 600;
}

.tc-dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.tc-dashboard-table th,
.tc-dashboard-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 14px;
}

.tc-action-btn {
    background: #f0f0f1;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 4px;
    font-size: 12px;
}

.tc-status-pending { color: #dba617; font-weight: 600; }
.tc-status-confirmed { color: #00a32a; font-weight: 600; }
.tc-status-rejected { color: #d63638; font-weight: 600; }
.tc-status-completed { color: #2271b1; font-weight: 600; }
