#delete_button {
    font-size: 16px;
}
#edit_button {
    font-size: 16px;
}
.cancel_delete_button {
    width: 126px;
    height: 56px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-size: 22px;
    padding: 16px;
    background-color: white;
    color: #2A3647;
    border: solid 1px #2A3647;
}
.cancel_delete_button:hover {
    border: solid 1px #29ABE2;
    color: #29ABE2;
}
.create_contact_button {
    width: 200px;
    height: 56px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 10px;
    font-size: 21px;
    font-weight: 700;
    background-color: #2A3647;
    color: white;
    border: none;
}
.create_contact_button:hover {
    background-color: #29ABE2;
    color: white;
}
#horizontal_underline {
    width: 75px;
    height: 2px;
    background-color: #29ABE2;
}
#edit_contact_container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}
#edit_contact_div {
    width: 1100px;
    background-color: white;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;

}
#edit_contact_div_position {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2A3647;
    width: 400px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
#edit_contact_div_title {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.alphabet_div {
    padding-left: 28px;
}
#edit_contact_div_title img {
    width: 64px;
    height: 70px;
    display: flex;
    justify-content: flex-start;
    text-align: left;
}
#edit_contact_div_title h2 {
    color: white;
    font-size: 50px;
}
#edit_contact_div_title span {
    color: white;
    font-size: 24px;
}
#edit_contact_div_infos_position {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    padding: 50px;
    padding-bottom: 150px;
}
#edit_contact_div_infos_content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
#edit_contact_content {
    display: flex;
    align-items: center;
    gap: 50px;
}
#profil_name_initialen {
    background-color: #FF7A00;
    color: white;
    font-size: 50px;    
}
.profil_name_initialen {    
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;    
    border: solid 2px white;
}
.contact_name {
    font-size: 20px;
    font-weight: 400;
    color: black;
}
.contact_email {
    font-size: 20px;
    font-weight: 400;
    color: #007CEE;
}
.edit_icon_normal {
    display: block;
}
.edit_icon_other {
    display: none;
}
#edit_div:hover .edit_icon_normal {
    display: none;
}
#edit_div:hover .edit_icon_other {
    display: block;
}
.delete_icon_normal {
    display: block;
}
.delete_icon_other {
    display: none;
}
#delete_div:hover .delete_icon_normal {
    display: none;
}
#delete_div:hover .delete_icon_other {
    display: block;
}
.menu_edit_delete_undercontainer {
    text-decoration: none;
    padding: 6px;
    color: black;
}
.menu_edit_delete__undercontainer:hover {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.4);
}
.contact_successfully_div {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.contact_successfully_message {
    height: 74px;
    width: 326px;
    border-radius: 20px;
    color: white;
    background-color: #2A3647;
    display: flex;
    justify-content: center;
    align-items: center;
}
.animate {
    animation: successfully_message 4s forwards;
}
.contactReady {
    height: 24px;
    width: 365px;
    border-radius: 10px;
    color: white;
    background-color: red;
    justify-content: center;
    align-items: center;
}