/* Right-hand slide-out menu — shared by Site UI and Procurement */

.menu-container {
  position: relative;
}

.menu-toggle {
  font-size: 24px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 12px;
  color: inherit;
  border-radius: 8px;
}

.menu-toggle:hover {
  background: rgba(15, 23, 42, 0.06);
}

.slide-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background-color: #1e293b;
  padding-top: 60px;
  transition: right 0.3s ease-in-out;
  z-index: 2000;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
}

.slide-menu.active {
  right: 0;
}

.slide-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.slide-menu ul li a,
.slide-menu ul li button.slide-menu-link {
  display: block;
  width: 100%;
  padding: 14px 20px;
  color: #f8fafc;
  text-decoration: none;
  font-size: 0.95rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.slide-menu ul li a:hover,
.slide-menu ul li button.slide-menu-link:hover {
  background-color: #334155;
}

.slide-menu .menu-section {
  padding: 18px 20px 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}

.menu-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 30px;
  line-height: 1;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1990;
}

.menu-overlay.active {
  visibility: visible;
  opacity: 1;
}
