/* Phone dropdown styles */
.phone-numbers.dropdown {
	position: relative;
}

/* Override Bootstrap's dropdown arrow */
.dropdown-toggle::after {
	display: none !important;
}

.dropdown-toggle {
	cursor: pointer;
	display: flex;
	align-items: center;
}

.arrow-down {
	margin-left: 5px;
	font-size: 8px;
	transition: transform 0.3s ease;
	color: white;
	display: inline-block;
}

.dropdown-menu {
	display: none;
	position: absolute;
	background-color: #fff;
	min-width: 240px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1000;
	border-radius: 4px;
	padding: 6px 0;
}

.dropdown-menu a {
	color: #333;
	padding: 6px 16px;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	transition: background-color 0.3s ease;
	font-size: 14px;
	line-height: 1.4;
}

.phone-number {
	font-weight: 500;
}
.phone-numbers {
    color: inherit !important;
}

.phone-name {
	font-size: 12px;
	color: #666;
	margin-top: 2px;
}

.dropdown-menu a:hover {
	background-color: #f1f1f1;
}

.phone-numbers.dropdown:hover .dropdown-menu {
	display: block;
}

.phone-numbers.dropdown:hover .arrow-down {
	transform: rotate(180deg);
}

/* Footer dropdown specific styles */
.footer-dropdown .dropdown-menu {
	bottom: 100%;
	top: auto;
	margin-bottom: 10px;
}

.footer-dropdown .dropdown-toggle h3 {
	margin-bottom: 0;
}

.footer-dropdown .arrow-down {
	font-size: 10px;
} 