body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    width: 800px;
    justify-content: center;
}

.search {
    display: flex;
    justify-content: center;
    margin-right: 20px;
    flex-direction: column;
    align-items: center;
    align-content: center;
}

.search form {
    justify-content: center;
}

#clientList {
    height: 200px;
    overflow: scroll;
}

ul li {
    text-align: center;
}

li:hover {
    cursor: auto;
    background: grey;
}

.add-client {
    flex: 1;
}

h1,
h2 {
    text-align: center;
}

form {
    display: flex;
    flex-direction: row;
    gap: 2px 6px;
    margin: auto;
    width: 700px;
    flex-wrap: nowrap;
    align-content: stretch;
    align-items: center;
    justify-content: center;
}

.leftCol {
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
    width: 50%;
}

.rightCol {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    align-items: flex-start;
    width: 50%;
}

label {
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 180px;
    padding: 5px;
    margin-bottom: 5px;
}

input[type="submit"] {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 5px;
}

a {
    text-decoration: none;
    color: #000;
}