* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #2d3748;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* NAVIGATION */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 16px rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: nowrap;
  overflow: hidden;
  max-width: 100%;
  width: 100%;
  transition: all 0.3s ease;
}



.logo {
  display: flex;
  align-items: center;
  align-self: center;
  height: 100px;
  transition: transform 0.3s ease;
  order: 1;
  flex-shrink: 0;
}

.logo img {
  height: 90px;
  width: auto;
  max-width: 350px;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15));
  transition: all  .3s ease;
  margin-top: 4px; /* nudge up to visually center in navbar */
}


.nav-center {
  display: flex;
  align-items: center;
  gap: 8px;
  order: 2;
  flex: 1;
  justify-content: center;
}

.nav-center a {
  color: #2d3748;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: rgba(136, 230, 227, 0.05);
  border: 1px solid transparent;
}

.nav-center a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(136, 230, 227, 0.2), transparent);
  transition: left 0.5s ease;
}

.nav-center a:hover {
  color: #88e6e3;
  background: rgba(136, 230, 227, 0.1);
  border-color: rgba(136, 230, 227, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(136, 230, 227, 0.15);
}

.nav-center a:hover::before {
  left: 100%;
}

.nav-center a:active {
  transform: translateY(0);
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  margin-left: 12px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 100001;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background: #2d3748;
  margin: 2px 0;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger-btn:hover {
  background: rgba(136, 230, 227, 0.1);
}

.hamburger-btn:hover .hamburger-line {
  background: #88e6e3;
}

/* Hamburger animation when active */
.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Styles */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 80px 0 20px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  z-index: 100000;
}

.mobile-nav.active .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  color: #2d3748;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.mobile-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(136, 230, 227, 0.1), transparent);
  transition: left 0.5s ease;
}

.mobile-nav-link:hover {
  background: rgba(136, 230, 227, 0.1);
  border-left-color: #88e6e3;
  color: #88e6e3;
  transform: translateX(8px);
}

.mobile-nav-link:hover::before {
  left: 100%;
}

.mobile-nav-link i {
  font-size: 18px;
  width: 20px;
  text-align: center;
  color: #88e6e3;
}

.mobile-nav-link.mobile-logout {
  color: #dc2626;
  border-left-color: #dc2626;
}

.mobile-nav-link.mobile-logout:hover {
  background: rgba(220, 38, 38, 0.1);
  border-left-color: #dc2626;
  color: #dc2626;
}

.mobile-nav-link.mobile-logout i {
  color: #dc2626;
}

.mobile-nav-profile {
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(136, 230, 227, 0.1) 0%, rgba(109, 214, 211, 0.1) 100%);
  border-bottom: 1px solid rgba(136, 230, 227, 0.2);
}

.mobile-profile-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-profile-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #88e6e3 0%, #6dd6d3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(136, 230, 227, 0.3);
}

.mobile-profile-name {
  font-size: 18px;
  font-weight: 700;
  color: #2d3748;
  background: linear-gradient(135deg, #88e6e3 0%, #6dd6d3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mobile-nav-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(136, 230, 227, 0.3), transparent);
  margin: 20px 24px;
}

.mobile-nav-search {
  padding: 0 24px;
}

.mobile-search-form {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 8px;
  border: 1px solid rgba(136, 230, 227, 0.2);
}

.mobile-search-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px 12px;
  font-size: 14px;
  outline: none;
  color: #2d3748;
}

.mobile-search-form input::placeholder {
  color: #94a3b8;
}

.mobile-search-form button {
  background: linear-gradient(135deg, #88e6e3 0%, #6dd6d3 100%);
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-search-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(136, 230, 227, 0.3);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  order: 3;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 16px;
  border-radius: 25px;
  border: 1px solid rgba(136, 230, 227, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.nav-search p{
  color: #2d3748;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding: 8px 12px;
  background: linear-gradient(135deg, #88e6e3 0%, #6dd6d3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-search input[type="text"] {
  padding: 12px 16px;
  border-radius: 20px;
  border: 1px solid rgba(136, 230, 227, 0.3);
  font-size: 14px;
  width: 220px;
  max-width: 100%;
  min-width: 0;
  flex: 1;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  outline: none;
}

.nav-search input[type="text"]:focus {
  border-color: #88e6e3;
  box-shadow: 0 0 0 3px rgba(136, 230, 227, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.nav-search button {
  background: linear-gradient(135deg, #88e6e3 0%, #6dd6d3 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(136, 230, 227, 0.3);
  position: relative;
  overflow: hidden;
}

.nav-search button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.nav-search button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(136, 230, 227, 0.4);
}

.nav-search button:hover::before {
  left: 100%;
}

.nav-search button:active {
  transform: translateY(0);
}

/* Right-aligned login container in navbar */
.nav-login {
  order: 3;
  display: flex;
  align-items: center;
  margin-left: 12px;
}

.profile-icon {
  margin-left: 12px;
  background: linear-gradient(135deg, #88e6e3 0%, #6dd6d3 100%);
  color: white;
  padding: 12px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(136, 230, 227, 0.3);
  position: relative;
  overflow: hidden;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.profile-icon:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(136, 230, 227, 0.4);
}

.profile-icon:hover::before {
  left: 100%;
}

.profile-icon:active {
  transform: translateY(0) scale(1);
}

/* Notification Bell Icon */
.notification-icon-wrapper {
  position: relative;
  cursor: pointer;
  margin-left: 8px;
}

.notification-bell {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #88e6e3 0%, #6dd6d3 100%);
  color: white;
  transition: all 0.3s ease;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(136, 230, 227, 0.3);
  position: relative;
  overflow: hidden;
}

.notification-bell::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.notification-bell:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(136, 230, 227, 0.4);
}

.notification-bell:hover::before {
  left: 100%;
}

.notification-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  border: 2px solid white;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Notification Panel */
.notification-panel {
  position: fixed;
  top: 80px;
  right: 20px;
  width: 380px;
  max-height: 500px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(136, 230, 227, 0.25);
  display: none;
  flex-direction: column;
  z-index: 10001;
  overflow: hidden;
  transform: translateY(-8px) scale(0.98);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

@media (max-width: 768px) {
  .notification-panel {
    top: 70px;
    right: 10px;
    left: 10px;
    width: auto;
    max-height: 60vh;
  }
}

@media (max-width: 480px) {
  .notification-panel {
    top: 65px;
    right: 8px;
    left: 8px;
    max-height: 55vh;
  }
}

.notification-panel.active {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.notification-panel-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(136, 230, 227, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, rgba(136, 230, 227, 0.1) 0%, rgba(109, 214, 211, 0.1) 100%);
}

.notification-panel-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
}

.mark-all-read {
  background: none;
  border: none;
  color: #88e6e3;
  font-size: 13px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s ease;
  font-weight: 500;
}

.mark-all-read:hover {
  background: rgba(136, 230, 227, 0.1);
}

.notification-list {
  overflow-y: auto;
  flex: 1;
}

.notification-item {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(136, 230, 227, 0.1);
  cursor: pointer;
  transition: background 0.2s ease;
  position: relative;
}

.notification-item:hover {
  background: rgba(136, 230, 227, 0.05);
}

.notification-item.unread {
  background: rgba(136, 230, 227, 0.08);
}

.notification-item.unread::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #88e6e3;
}

.notification-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.notification-title {
  font-weight: 600;
  font-size: 14px;
  color: #2d3748;
  margin: 0;
}

.notification-time {
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
  margin-left: 12px;
}

.notification-message {
  font-size: 13px;
  color: #4b5563;
  margin: 0;
  line-height: 1.4;
}

.notification-empty {
  padding: 40px 20px;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}

.notification-empty i {
  font-size: 48px;
  color: #d1d5db;
  margin-bottom: 12px;
}

/* Notification Detail Modal */
.notification-detail-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10002;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.notification-detail-content {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  width: 90%;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.notification-detail-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.notification-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.notification-detail-icon.approved {
  background: #d1fae5;
  color: #065f46;
}

.notification-detail-icon.cancelled {
  background: #fee2e2;
  color: #dc2626;
}

.notification-detail-title {
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
}

.notification-detail-body {
  margin-top: 20px;
}

.detail-item {
  margin-bottom: 16px;
}

.detail-label {
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 15px;
  color: #2d3748;
  font-weight: 500;
}

.cancellation-reason-box {
  background: #fef2f2;
  border-left: 4px solid #ef4444;
  padding: 16px;
  border-radius: 8px;
  margin-top: 8px;
}

.cancellation-reason-box .detail-value {
  color: #7f1d1d;
  white-space: pre-wrap;
}

.confirmation-modal-btn {
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.confirmation-modal-btn-cancel {
  background: #f3f4f6;
  color: #374151;
}

.confirmation-modal-btn-cancel:hover {
  background: #e5e7eb;
}

/* Profile Modal Styling */
.profile-dropdown {
  position: fixed;
  right: 20px;
  top: 100px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  width: 260px;
  z-index: 10001;
  padding: 18px;
  border: 1px solid rgba(136, 230, 227, 0.25);
  transform: translateY(-8px) scale(0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.profile-dropdown::after {
  content: '';
  position: absolute;
  top: -10px;
  right: 24px;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.9);
  transform: rotate(45deg);
  border-left: 1px solid rgba(136, 230, 227, 0.25);
  border-top: 1px solid rgba(136, 230, 227, 0.25);
}

.profile-dropdown.open {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(136, 230, 227, 0.2);
}

.profile-avatar {
  background: linear-gradient(135deg, #88e6e3 0%, #6dd6d3 100%);
  color: white;
  padding: 12px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  box-shadow: 0 4px 15px rgba(136, 230, 227, 0.3);
}

.profile-name {
  font-weight: 700;
  font-size: 16px;
  color: #2d3748;
  background: linear-gradient(135deg, #88e6e3 0%, #6dd6d3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.profile-subtext {
  font-size: 12px;
  color: #64748b;
}

.logout-link {
  display: block;
  text-align: left;
  color: #0f172a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 12px;
  transition: all 0.25s ease;
  background: rgba(136, 230, 227, 0.08);
  border: 1px solid rgba(136, 230, 227, 0.25);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logout-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}

.logout-link:hover {
  background: rgba(136, 230, 227, 0.18);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(136, 230, 227, 0.25);
}

.logout-link:hover::before {
  left: 100%;
}

.logout-link i {
  color: #0ea5b6;
}




/* Responsive Design */
@media (max-width: 1024px) {
  .navbar {
    padding: 12px 30px;
  }
  
  .logo img {
    height: 75px;
  }
  
  .nav-search input[type="text"] {
    width: 180px;
  }
  
  .nav-center {
    gap: 6px;
  }
  
  .nav-center a {
    padding: 10px 16px;
    font-size: 14px;
  }
  
  .nav-search {
    gap: 8px;
    padding: 6px 12px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.98) 100%);
    align-items: center;
    justify-content: space-between;
  }
  
  /* Hide desktop navigation on mobile */
  .desktop-nav {
    display: none;
  }
  
  /* Logo order */
  .logo {
    order: 1;
    flex-shrink: 0;
  }
  
  .logo img {
    height: 55px;
    margin-top: 0;
  }
  
  /* Nav-right container adjustments */
  .nav-right {
    order: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
  }
  
  /* Search order */
  .nav-search {
    order: 1;
    flex: 1;
    max-width: 200px;
    min-width: 0;
    justify-content: flex-end;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    align-items: center;
  }
  
  /* Notification bell order in nav-right */
  .notification-icon-wrapper {
    order: 2;
  }
  
  .nav-search input[type="text"] {
    flex: 1;
    min-width: 0;
    max-width: 140px;
    padding: 10px 12px;
    font-size: 13px;
    width: auto;
  }
  
  .nav-search button {
    flex-shrink: 0;
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
  }
  
  /* Show notification icon on mobile (outside hamburger menu) */
  .notification-icon-wrapper {
    display: block;
    order: 2;
    flex-shrink: 0;
    margin-left: 8px;
  }
  
  .notification-bell {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .notification-badge {
    width: 18px;
    height: 18px;
    font-size: 10px;
    top: -1px;
    right: -1px;
  }
  
  /* Show hamburger button on mobile */
  .hamburger-btn { 
    display: flex; 
    order: 3;
    flex-shrink: 0;
    margin-left: 4px;
  }
  
  /* Hide profile icon and login button on mobile */
  .profile-icon,
  .nav-login {
    display: none;
  }
  
  .profile-dropdown {
    right: 20px;
    width: calc(100% - 40px);
    max-width: 300px;
    top: 120px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 10px 12px;
    gap: 6px;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    order: 1;
    flex-shrink: 0;
  }
  
  .logo img {
    height: 50px;
    margin-top: 0;
  }
  
  /* Nav-right container for small screens */
  .nav-right {
    order: 2;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    min-width: 0;
  }
  
  .nav-search {
    order: 1;
    flex: 1;
    max-width: 160px;
    min-width: 0;
    gap: 4px;
    padding: 0;
    align-items: center;
  }
  
  /* Notification bell order in nav-right for small screens */
  .notification-icon-wrapper {
    order: 2;
  }
  
  .nav-search input[type="text"] {
    flex: 1;
    min-width: 0;
    font-size: 12px;
    padding: 8px 10px;
    max-width: 110px;
    width: auto;
  }
  
  .nav-search button {
    padding: 8px 10px;
    font-size: 12px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  /* Ensure notification is visible on small screens */
  .notification-icon-wrapper {
    display: block;
    order: 2;
    flex-shrink: 0;
    margin-left: 6px;
  }
  
  .notification-bell {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .notification-badge {
    width: 16px;
    height: 16px;
    font-size: 9px;
    top: -1px;
    right: -1px;
  }

  .profile-icon {
    display: none;
  }
  
  .hamburger-btn { 
    order: 3;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    margin-left: 2px;
  }
  
  .hamburger-line {
    width: 20px;
    height: 2px;
  }
  
  .mobile-nav-content {
    width: 260px;
  }
  
  .profile-dropdown {
    right: 15px;
    width: calc(100% - 30px);
    top: 100px;
    padding: 15px;
  }
}