﻿/* static/css/navbar.css */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 1000;
  margin: 0;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  gap: 20px;
}

.navbar-title {
  flex: 1;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
}

.navbar-links {
  flex: 1;
  text-align: center;
}

.navbar-links a {
  margin: 0 12px;
  text-decoration: none;
  font-weight: 500;
  color: #1f2937;
  font-size: 16px;
}

.navbar-links a:hover {
  color: #00000052;
}

.navbar-auth {
  flex: 1;
  text-align: right;
}


.navbar-auth .signin-button {
  background-color: #031e57;
  color: white;
  padding: 8px 16px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  margin-right: 0;
}

.navbar-auth .signin-button:hover {
  background-color: #000e356c;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  min-width: 140px;
  z-index: 10;
  border-radius: 4px;
  padding: 0;
  margin-top: 5px;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 10px 16px;
  text-align: left;
  width: 100%;
  background-color: white;
  color: #333;
  border: none;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
}

.dropdown-item:hover {
  background-color: #f0f0f0;
}

.logout-button {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}




.employee-navbar {
  background-color: #f4f4f4;
  border-top: 1px solid #ccc;
  padding: 10px 20px;
}

.employee-navbar ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.employee-navbar a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.employee-navbar a:hover {
  color: #00000093;
}
