
table {
    border-collapse: collapse;
    width: 100%;
}

table, th, td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}

form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
    border: 1px solid #ddd;
    margin-top: 20px;
}

.form-group {
    display: inline-block;
    margin-right: 20px;
    vertical-align: middle;
  }


  

label, input, select, button {
    font-size: 1rem;
    padding: 8px;
    border: 1px solid #ddd;
}

label {
    width: 30%;
    text-align: right;
    margin-right: 10px;
}

input, select {
    width: 70%;
}

button {
    background-color: #007BFF;
    border: none;
    color: white;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    transition-duration: 0.4s;
}

button:hover {
    background-color: #0056B3;
}
