html {
    margin: 0;
    overscroll-behavior: none;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overscroll-behavior: none;
}

.container {
    background-color: #fff;
    padding-top: 5px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

#ui-container {
    max-width: 600px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#no-warranty-text {
    padding-left: 20px;
    padding-right: 20px;
}

.subsection {
    margin-bottom: 5px;
}

h1, h2, h3 {
    color: #333;
    text-align: center;
}

.input-group {
    margin-bottom: 10px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

input, textarea, button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
    min-height: 48px;
}

textarea {
    height: 100px;
    resize: vertical;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

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

#result, #lineResult {
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}
