body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #0d1117;
    color: #c9d1d9;
    margin: 0;
    padding: 0;
}

header {
    background-color: #161b22;
    color: white;
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #30363d;
}

main {
    padding: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background-color: #161b22;
    color: #c9d1d9;
}

th, td {
    border: 1px solid #30363d;
    padding: 0.5rem;
    text-align: left;
}

th {
    background-color: #21262d;
}

button {
    background-color: #238636;
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    margin: 0.2rem 0;
    cursor: pointer;
    border-radius: 0.3rem;
}

button:hover {
    background-color: #2ea043;
}

.form-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

.form-box {
    border: 3px solid grey;
    border-radius: 0.3rem;
    padding: 1rem;
    width: 48%;
}

.form-box h2 {
    border-bottom: 3px solid grey;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.form-box form {
    border: 3px solid grey;
    border-radius: 0.3rem;
    padding: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.form-box form .input-section {
    border: 2px solid #30363d; /* Border around each input section */
    padding: 0.5rem;
    border-radius: 0.3rem;
    display: flex;
    flex-direction: column; /* Stack label and input vertically */
    flex: 1 1 100px; /* Adjusted width */
}

.form-box form label {
    margin-bottom: 0.5rem; /* Space below the label */
    flex: 1 1 20px; /* Adjusted width */
}

.form-box form input {
    max-width: 100%; /* Set a maximum width */
    flex: 1 1 25px; /* Adjusted width */
    height: 1rem; /* Set the height of the input boxes */
    padding: 0.2rem; /* Adjust padding */
    margin: 0; /* Adjust margin */
}

.form-box form button {
    flex: 1 1 100%; /* Full width button */
    margin-top: 1rem; /* Space above the button */
}

.form-box h2 span {
    padding: 0.5rem;
    display: inline-block;
}