.dr1043header {
	position: sticky;
	top: 0;
	z-index: 1000;
}

.dr1043header header {
	width: 100%;
	background: linear-gradient(90deg, #00796b, #26a69a);
	color: white;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 15px;
	flex-wrap: wrap;
	position: relative;
}

.logo-section {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	flex: 1 1 auto;
	min-width: 0;
}

.logo-section img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid white;
}

.clinic-title {
	display: flex;
	flex-direction: column;
	font-size: 0.85rem;
	overflow: hidden;
}

.clinic-title h1 {
	font-size: 1.3rem;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.clinic-title h2 {
	font-size: 0.9rem;
	font-weight: 400;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.doctor-info p {
	margin: 2px 0;
}

.location-inline {
	color: #ffeb3b;
	text-decoration: none;
}

nav ul {
	list-style: none;
	display: flex;
	gap: 20px;
}

nav ul li a {
	color: white;
	text-decoration: none;
	font-weight: 500;
	transition: 0.3s;
}

nav ul li a:hover {
	color: #ffeb3b;
}

/* Hamburger Menu */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 25px;
	height: 18px;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	height: 3px;
	background: white;
	border-radius: 2px;
	transition: 0.4s;
}

/* Mobile Styles */
@media ( max-width : 768px) {
	.header-container {
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: center;
	}
	.clinic-title h1, .clinic-title h2 {
		white-space: normal;
		font-size: 1.1rem;
	}
	nav {
		position: absolute;
		top: 100%;
		right: 0;
		width: 200px;
		background: #00796b;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease-in-out;
	}
	nav.active {
		max-height: 500px;
	}
	nav ul {
		flex-direction: column;
		gap: 10px;
		padding: 10px;
	}
	nav ul li a {
		font-size: 1rem;
		padding: 8px 0;
	}
	.menu-toggle {
		display: flex;
	}
	.menu-toggle.active span:nth-child(1) {
		transform: rotate(45deg) translate(5px, 5px);
	}
	.menu-toggle.active span:nth-child(2) {
		opacity: 0;
	}
	.menu-toggle.active span:nth-child(3) {
		transform: rotate(-45deg) translate(5px, -5px);
	}
}