/* Teacher Archive Styles */
.teacher-archive-container {
    max-width: 1260px;
    margin: 40px auto;
    padding: 0 20px;
}

.teacher-archive-header {
    text-align: center;
    margin-bottom: 40px;
}

.teacher-archive-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.teacher-search-form input[type="text"] {
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    width: 400px;
    max-width: 100%;
}

.teacher-search-form button {
    padding: 12px 30px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    margin-left: 10px;
}

.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.teacher-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.teacher-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.teacher-card-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #1a1a1a;
    object-fit: cover;
    margin-bottom: 20px;
}

.teacher-card-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.teacher-title {
    color: #666;
    font-size: 16px;
    margin-bottom: 10px;
}

.teacher-specialization {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.teacher-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.teacher-stats span {
    font-size: 14px;
    color: #333;
}

.view-profile-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.view-profile-btn:hover {
    background: #333;
}
