/* ==============================
   GIG TOP NAV ICONS (AVATAR STYLE)
   ============================== */

/* ==============================
   FORCE NAV ICON BUBBLES (FIX)
   ============================== */

.gig-nav-action-btn {
	all: unset; /* 🔥 removes Bootstrap button styles */
	box-sizing: border-box;

	width: 44px;
	height: 44px;
	border-radius: 50% !important;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	background: #eef4fb;
	box-shadow:
		0 4px 12px rgba(0,0,0,0.12);

	cursor: pointer;
	transition: all 0.25s ease;
}

/* Icon */
.gig-nav-action-btn i {
	font-size: 17px;
	line-height: 1;
}

/* Spacing */
.gig-nav-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

/* Hover */
.gig-nav-action-btn:hover {
	background: #e2ecf9;
	transform: translateY(-1px);
}

/* Icon colors */
.gig-nav-action-btn .fa-sun {
	color: #f59e0b;
}

.gig-nav-action-btn .fa-bell {
	color: #3b82f6;
}

.gig-nav-action-btn .fa-user {
	color: #2563eb;
}

/* Notification dot */
.gig-has-notification {
	position: relative;
}

.gig-notification-dot {
	position: absolute;
	top: 7px;
	right: 7px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #ef4444;
	box-shadow: 0 0 0 2px #eef4fb;
}


/* ==============================
   GIG USER DROPDOWN (POLISHED)
   ============================== */

.gig-user-dropdown {
	border-radius: 14px;
	padding: 6px;
	min-width: 220px;
	margin-top: 8px;
}

.gig-user-dropdown-header {
	padding: 10px 14px;
	font-size: 14px;
}

.gig-user-dropdown-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 14px;
	border-radius: 10px;
	font-size: 14px;
}

.gig-user-dropdown-item i {
	width: 18px;
	font-size: 15px;
	color: #2b5fa7;
}

.gig-user-dropdown-item:hover {
	background: #f1f6fb;
}

.gig-user-dropdown-item.text-danger i {
	color: #dc3545;
}

/* Mobile refinement */
@media (max-width: 768px) {
	.gig-nav-action-btn {
		width: 38px;
		height: 38px;
	}

	.gig-nav-action-btn i {
		font-size: 15px;
	}
}
