* {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

main {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.add-section {
    margin: 20px;
    margin-top: 0px;
    width: 100%;
}

.add-section input {
    width: 50%;
    height: 30px;
    max-width: 700px;
    padding: 10px;
    border: 1px solid rgb(91, 91, 91);
    border-radius: 5px;
}

button {
    height: 30px;
    width: 100px;
    border-radius: 5px;
    border-style: none;
    color: white;
    cursor: pointer;
}

.add-section button {
    background-color: #0569c0;
}

.list-section button {
    background-color: #aa1111;
    margin: 5px;
}

.list-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

table {
    width: 100%;
    max-width: 700px;
    margin: 10px;
    border-collapse: collapse;
}

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

tr:hover {
    background-color: #dadada;
}

th:nth-child(1) {
    width: 20%;
}

th:nth-child(2) {
    width: 60%;
}

th:nth-child(3) {
    width: 20%;
}

.form-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.form-section input {
    width: 50%;
    max-width: 500px;
    height: 30px;
    padding: 8px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.form-section button {
    background-color: #0569c0;
    color: white;
    height: 35px;
    width: 150px;
    border-radius: 5px;
    border-style: none;
    cursor: pointer;
}

.form-section button:hover {
    background-color: #024a89;
}

.form-section p {
    margin-top: 10px;
    font-size: 0.9em;
}
