form#dr_login_form {
    display: flex;
    gap: 10px;
    height: 43px;
    margin: 50px auto;
    width: 600px;
    max-width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    font-size: 18px;
    justify-content: center;
}
div#treatment_type_buttons {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    gap: 5px 20px;
    justify-content: center;
}
div#treatment_type_buttons h3 {
    text-align: center;
    width: 100%;
    font-size:35px;
}
#doctor_files_page button, #doctor_files_page input[type=button], #doctor_files_page a.button {
    background-color: #824484;
    display: inline-block;
    border: none;
    text-align: center !important;
    padding: 0 27px;
    line-height: 43px;
    color: white;
    white-space: nowrap;
    min-height: 43px;
}

#doctor_files_page button.treatment_type_button {
    background-color:white;
    color: #012754;
    border : 1px solid #012754;
    transition: .3s;
}

#doctor_files_page button.treatment_type_button.active {
    background-color:#824484;
    color: #FFF;
    border : 1px solid #824484;
}

form#dr_login_form label {
    display: flex;
    align-items: center;
}
form#dr_login_form input[type=password] {
    border-radius: 0px;
    border: 1px solid #012754;
    width: 211px;
}
div#all_doctor_files_con {
    width: 600px;
    margin: 0 auto;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}
.doctor_files_con {
    max-height: 0;
    transition: .5s;
    overflow:hidden;
}
.doctor_files_con.active {
    max-height: fit-content;
}
div#all_doctor_files_con h3 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 30px;
}
table.doctor_files_table th {
    text-align: center;
    border-bottom: 1px solid #D9D9D9;
        font-size: 28px;
    padding: 15px;
}
table.doctor_files_table {
    border: 0px solid;
    margin: 0 0 60px !important;
    width: 100%;
    background-color: #FAFAFA;
    max-width: 100%;
}

table.doctor_files_table tbody tr td:not(:last-child) {
    border-left: none;
}

table.doctor_files_table tr:not(:last-child) td {
    border-bottom: 1px solid #D9D9D9;
}
table.doctor_files_table tr td:not(:last-child) {
    border-left: 1px solid;
}
table.doctor_files_table td {
    padding: 15px;
}
table.doctor_files_table td:last-child {
    text-align: left;
}