/* static/styles.css */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1, h2, h3 {
    color: #444;
}

label {
    display: block;
    margin-top: 10px;
}

select, button {
    padding: 10px;
    margin-top: 10px;
    width: 100%;
    max-width: 500px;
    font-size: 16px;
}

button {
    background-color: #0073b8;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #e37f21;
}

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

li {
    background: #fff;
    margin: 5px 0;
    padding: 10px;
    border-radius: 4px;
}

a {
    display: inline-block;
    margin-top: 20px;
    color: #337ab7;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
