.choices__input {
    border: 1px solid #ccc; /* Thin border */
    padding: 2px 5px; /* Reduce padding to make the box smaller */
    font-size: 14px; /* Decrease font size */
    border-radius: 4px; /* Optional: Rounded corners */
    color: #333; /* Text color */
    width: auto; /* Adjust width as needed or set a specific value like 50% */
    box-sizing: border-box; /* Include padding in width */
     margin-bottom: 10px; /* Bottom margin to create space below the input */
}


.choices__input::placeholder {
    color: #aaa; /* Placeholder text color */
    font-style: italic; /* Optional: Italic placeholder */
}