﻿.output-teacher{
    display: flex;
    column-gap: 1rem;
}

.teacher-card {
    border-radius: 3rem;
    border: 1px solid #ccc;
    cursor: pointer;
    display: flex;
    justify-content: space-evenly;
    padding: .5rem .75rem;
    align-items: center;
    transition: 250ms;
    column-gap: .75rem;
    font-weight: 600;
}

.teacher-card:hover{
    border-color: var(--highlight);
}

.teacher-card .teacher-image-area{
    width: 2.5rem;
    height: 2.5rem;
    background-size: cover;
    background-position: center center;
    border-radius: 50%;
    overflow: hidden;
}