#container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    margin-top: 0;
    color: #333;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
}

#input-container {
    margin-bottom: 20px;
}

#name-input,
#email-input,
#update-name-input,
#update-email-input {
    padding: 10px;
    font-size: 16px;
    margin-right: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

#name-input:focus,
#email-input:focus,
#update-name-input:focus,
#update-email-input:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #648fdd;
    color: white;
    border: none;
    border-radius: 4px;
}

button:hover {
    background-color: #5a7dc4;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

th,
td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #648fdd;
    color: white;
}

#update-container {
    display: none;
    margin-top: 20px;
}

#update-btn {
    background-color: #2196F3;
}

#cancel-btn {
    background-color: #f44336;
}
.edit-btn {
    background-color: #ffc107;
}

.delete-btn {
    background-color: #dc3545;
    margin-left: 10px;
}

footer {
    margin: 20px 0;
    font-size: 14px;
    color: #777;
    text-align: center;
    padding: 10px;
    background-color: #f8f8f8;
    border-top: 1px solid #ddd;
    border-radius: 5px;
    position: relative;
    bottom: 0;
}