html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    font-family: "Funnel Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

body {
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1d1d1d;
}

.listContainer {
    position: relative;
    width: 250px;
    height: 70vh;
    min-height: 500px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 40px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.listContainer h1 {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
    position: sticky;
    top: 0;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 10px 0;
    font-size: 1.5em;
    color: #f5f5f5;
    background-color: #007bff;
}

.listContainer ul {
    overflow-y: scroll;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

.listContainer ul li {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.appContainer {
    position: relative;
    width: 600px;
    max-width: 60%;
    height: 70vh;
    min-height: 500px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #007bff;
    color: white;
    font-size: 24px;
    border-radius: 12px 12px 0 0;
}

#leftButton,
#rightButton,
#newEntry,
#deleteEntry {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background-color: #ebebeb;
    padding: 20px;
    color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 24px;
    margin: 0 10px;
}

#leftButton,
#rightButton {
    width: 40px;
}


#navigation_text {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.1em;
    color: #ebebeb;
    width: 33%;
    text-align: center;
}



.center {
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 60px;
}

#saveButton {
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;
    position: absolute;
    width: 100px;
    height: 40px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    bottom: 20px;
    right: 20px;
}

#nameContainer,
#emailContainer,
#phoneContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    margin: 10px 0;
}

#nameContainer label,
#emailContainer label,
#phoneContainer label {
    width: 200px;
    font-size: 1.2em;
    text-align: left;
    margin-right: 10px;
}

#nameContainer input,
#emailContainer input,
#phoneContainer input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
}

#contact-form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#profileImage {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#profileImage img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}