select {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    color: #37517e;
    background-color: #fff;
    font-weight: 700;
}

/* Style for select dropdown options */
select option {
    padding: 10px;
    font-size: 16px;
    color: #37517e;
}

/* Style for select dropdown hover state */
select:hover {
    background-color: #f0f0f0;
}

/* Style for select dropdown when active */
select:focus {
    border-color: #007bff;
}