body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

header {
    background-color: #333;
    color: white;
    padding: 1em;
    text-align: center;
}

main {1200px;
    margin: auto;
    padding: 1em;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

form {
    padding: 1em;
}

input[type="text"] {
    width: 100%;
    padding: 0.5em;
    margin-bottom: 1em;
    border: 1px solid #ddd;
}

input[type="radio"] {
    margin-right: 0.5em;
}

input[type="submit"] {
    background-color: #333;
    color: white;
    padding: 0.5em 1em;
    border: none;
    cursor: pointer;
}

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

li {
    margin-bottom: 0.5em;
}

a {
    text-decoration: none;
    color: #337ab7;
}

a:hover {
    color: #23527c;
}

.truncate-multiline {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; /* Adjust this value for more lines */
    overflow: hidden;
    max-width: 600px; /* Adjust this value to fit your layout */
}

.truncate-singleline {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 600x; /* Adjust this value to fit your layout */
}

/* Optional: Responsive design adjustments */
@media (max-width: 768px) {
    main {
        margin: 1em;
    }
}

/* Optional: Add some padding to the list items */
li {
    padding: 0.5em;
    border-bottom: 1px solid #ddd;
}

li:last-child {
    border-bottom: none;
}
#progressBar {
    text-align: center;
}

progress {
    -webkit-appearance: none;
    appearance: none;
    width: 50%;
    height: 20px;
    margin: auto;
    display: block;
}

progress::-webkit-progress-bar {
    background-color: #eee;
}

progress::-webkit-progress-value {
    background-color: #bc0031;
}

/* For Firefox */
progress::-moz-progress-bar {
    background-color: #bc0031;
}

#progressText {
    display: block;
    margin-top: 5px;
}
