select {
    appearance: none; /* Remove default styling */
    -webkit-appearance: none;
    -moz-appearance: none;
}

select option:checked {
    background-color: white; /* Set the background color to match the default background */
    background-image: none; /* Remove any background image */
}

.btn-group {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    margin-bottom: 15px; /* Add some spacing */
}

body {
    background-color: #999999; /* Set your desired background color here */
  }