/* [2026-03-12] Facilities Module - Consistent with Alumni UI */

/* Portal Layout Extensions */
.portal-body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f0f2f5;
  margin: 0;
}

.portal-wrapper {
  display: flex;
  min-height: calc(100vh - 150px);
  gap: 20px;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Sidebar Styling */
.sidebar-nav {
  width: 280px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 20px;
  height: fit-content;
}

.sidebar-header {
  font-weight: 700;
  color: #1e40af;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 2px solid #f0f2f5;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav ul li {
  margin-bottom: 8px;
}

.sidebar-nav ul li a {
  display: block;
  padding: 12px 15px;
  color: #4b5563;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.sidebar-nav ul li a:hover {
  background: #eff6ff;
  color: #1e40af;
  padding-left: 20px;
}

.sidebar-nav ul li a.active-link {
  background: #1e40af;
  color: white;
}

/* Content Area */
.main-content {
  flex: 1;
  background: transparent;
}

.content-frame {
  width: 100%;
  border: none;
  border-radius: 12px;
  min-height: 600px;
  transition: height 0.2s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .portal-wrapper {
    flex-direction: column;
  }
  .sidebar-nav {
    width: 100%;
    box-sizing: border-box;
  }
}
