body,
html {
    height: 100%;
    margin: 0;
    font-family: "Arial", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
}

.container {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: auto;
}

h1 {
    color: #333;
    margin-bottom: 20px;
}

.thumb-icon {
    font-size: 60px;
    transition: transform 0.5s;
    display: block; /* Ensure the icon is on its own line */
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px; /* Reduced the bottom margin */
    display: flex;
    justify-content: center; /* Center the input field */
}

input[type="number"] {
    padding: 6px; /* Reduced padding for a sleeker look */
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 80%; /* Adjusted width for better proportions */
    -webkit-appearance: none; /* Remove incrementer for Webkit browsers */
    -moz-appearance: textfield; /* Remove incrementer for Mozilla Firefox */
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

label {
    display: flex; /* Changed from block to flex to align items */
    align-items: center; /* Centers the label vertically */
    font-weight: bold;
    margin-bottom: 5px; /* Space between label and input */
    font-size: 0.9em; /* Slightly smaller text for a clean look */
    text-align: left; /* Ensure labels are left-aligned */
    width: 100%; /* Ensure label spans full width of its container */
}
