/* Center the dropdown container */
.dropdown-highlight {
    width: 55%;
    margin: 0 auto;
    display: block;

    /* Styling */
    border: 2px solid #007BFF;
    border-radius: 6px;
    background-color: #f0f8ff;
    font-weight: bold;
    color: #003366;
    padding: 5px;
}

/* Make the dropdown react nicely on hover/focus */
.dropdown-highlight:focus,
.dropdown-highlight:hover {
    border-color: #0056b3;
    box-shadow: 0 0 5px rgba(0, 91, 187, 0.5);
}

/* Adjust the internal Select control from Dash */
.dropdown-highlight .Select-control {
    border: none !important;
    background-color: transparent !important;
}