/* 📝 Role info banner */
#roleInfo {
  font-weight: bold;
  margin-bottom: 20px;
  color: #007bff;
}

/* 🔔 Notification List */
#notificationList {
  list-style: none;
  padding: 0;
  margin: 0;
}

#notificationList li {
  background-color: #fff;
  border: 1px solid #ddd;
  border-left: 4px solid #007bff;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  transition: border-color 0.3s ease;
}

#notificationList li.read {
  border-left-color: #ccc;
}

/* 👁️ Mark as read button */
button.mark-read {
  margin-top: 6px;
  background-color: #6c757d;
  color: white;
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button.mark-read:hover {
  background-color: #495057;
}

/* 📦 Order feed list */
#orderList {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

#orderList li {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
}
/* 🚀 Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  background-color: #fff3e0;
  border-top: 1px solid #f39c12;
  padding: 0.75rem 0.5rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}
.bottom-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #e67e22;
  font-size: 0.9rem;
  padding: 0.3rem;
  text-align: center;
  flex-grow: 1;
}
.bottom-nav a:hover {
  color: #d35400;
}
@media (max-width: 600px) {
  #notificationList li,
  #orderList li {
    font-size: 0.9em;
    padding: 10px;
  }

  button.mark-read {
    width: 100%;
    margin-top: 8px;
  }
 /* 🚀 Bottom Navigation */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  background-color: #fff3e0;
  border-top: 1px solid #f39c12;
  padding: 0.75rem 0.5rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}
.bottom-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #e67e22;
  font-size: 0.9rem;
  padding: 0.3rem;
  text-align: center;
  flex-grow: 1;
}
.bottom-nav a:hover {
  color: #d35400;
}
}
