/* /css/style.css */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    padding: 0;
}

h2, h3, h4 {
    color: #333;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

table, th, td {
    border: 1px solid #ccc;
}

th, td {
    padding: 10px;
    text-align: left;
}

input, select, button {
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
}
.remove{
    background-color: red;
    color: white;
}

/* Responsive adjustments */
@media (min-width: 600px) {
    input, select, button {
        width: auto;
    }
}
