.teacherHeaderContainer{
    display: flex;
    width: 100%;
    align-items: center;
}
.teacherBaseContainer{
    display: flex;
    flex: 1;
}
.teacherContentBox1{
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}
.teacherContentBox2{
    display: flex;
    flex-direction: column;
    width: 350px;
    height: 100%;
    overflow-y: scroll;
}

.teacherDetailsContainer{
    display: flex;
    flex-direction: column;
    background-color: var(--b2);
    width: 95%;
    height: auto;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--c1);
    margin: 1rem auto;
    box-shadow: 2px 4px 4px var(--c2);
    max-width: 350px;
    animation: popup 0.7s ease

}
.teacherDetailsContainer div{
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
}
.teacherDetailsContainer input {
    font-size: 18px;
    font-weight: 600;
    color: var(--c7);
    padding: 0.2rem 0.5rem;
    margin-left: auto;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    background-color: transparent;
    width: calc(100% - 3.5rem);
    text-align: right;
    transition: 0.2s ease;
    outline: none;
}
.teacherDetailsContainer textarea {
    font-size: 14px;
    font-weight: 600;
    color: var(--c7);
    padding: 0.2rem 0.5rem;
    margin-left: auto;
    border: 1px solid var(--c2);
    border-radius: 0.5rem;
    background-color: transparent;
    text-align: center;
    transition: 0.2s ease;
    outline: none;
}
.teacherDetailsContainer input:focus{
    border: 1px solid var(--c2);
}
.teacherDetailsContainer button {
    background-color: transparent;
    border: 2px solid var(--c1);
    font-size: 18px;
    font-weight: 600;
    color: var(--c4);
    padding: 0.2rem 0.5rem;
    border-radius: 0.5rem;
}

@media (max-width: 739px) {

.teacherBaseContainer{
    flex-direction: column;
}

.teacherContentBox1{
 display: flex;
    flex-direction: column;
    flex: none;
    width: 100%;
    height: calc(100dvh - 100px);
    overflow: hidden;
}
.teacherContentBox2{
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: calc(100dvh - 100px);
    flex: 1;
}

}