form {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

form label {
    font-weight: bold;
}

form input {
    padding: 0.4rem;
    border: 1px solid;
    max-width: 300px;
    width: 100%;
}

form button {
    padding: 0.5rem 1rem;
    background-color: #297fb9b0;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

form button:hover {
    background-color: #2980b9;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

table th, table td {
    padding: 0.5rem;
}

