/* Admin Layout Styles */

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 1em 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Sidebar Link Base Styles */
.sidebar-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  color: #374151;
  transition: all 0.2s ease;
}

.sidebar-link i {
  width: 1.25rem;
  margin-right: 0.75rem;
  text-align: center;
}

/* Super Admin Theme (Red) */
.admin-super .sidebar-link:hover {
  background-color: #fef2f2;
}

.admin-super .sidebar-link.active {
  background-color: #fee2e2;
  color: #dc2626;
  border-right: 3px solid #dc2626;
}

/* Regular Admin Theme (Blue) */
.admin-regular .sidebar-link:hover {
  background-color: #f3f4f6;
}

.admin-regular .sidebar-link.active {
  background-color: #eff6ff;
  color: #2563eb;
  border-right: 3px solid #2563eb;
}

/* Sidebar Collapsible Sections */
.sidebar-collapsible-section {
  margin-bottom: 0;
}

.sidebar-section-header {
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.sidebar-section-header:hover {
  background-color: #f9fafb;
}

.sidebar-section-content {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sidebar-section-content.collapsed {
  max-height: 0 !important;
}

.sidebar-toggle-icon {
  transition: transform 0.2s ease;
  font-size: 0.625rem;
  color: #9ca3af;
}
