/* Targeting the "Locations" menu item by its endpoint */
/* li.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--locations */
.woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--locations a:before {
    font-family: "Font Awesome 5 Free"; /* Ensuring the correct font family */
    content: "\f494"; /* Unicode for warehouse icon in Font Awesome 5 */
    display: inline-block;
    margin-right: 8px;
    font-weight: 900; /* Required for some Font Awesome 5 icons */
}

/* Location Selector */
div#user-locations-wrapper {
    width: 100%;
    margin-top: -10px;
	height: 50px;
	display: block;
}

div#user-locations-dropdown {
	background: #111;
	border-bottom-left-radius: 10px;
    max-width: 75%;
    float: right;
	padding: 10px;
}

select#user-locations-select {
    float: right;
}

p#your-location-select-title {
    float: left;
    color: white;
    font-weight: bold;
    padding: 0px;
    margin: 0px;
}

table.locations.form-table th, table.locations.form-table tr {
    background: #fff;
    padding: 0px 0px 10px 0px;
}

table.locations td {
    background: #fff !important;
    padding: 2px;
    margin: 0px;
}

table.locations input {
    padding: 3px;
    border-radius: 3px;
    width: 100%;
}

table.locations select {
    width: 100%;
    padding: 5px;
}

.woocommerce-locations-form {
    max-width: 750px;
}