/* Side indicators container */
.side-indicators {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99999;
}

/* Side indicators */
.side-indicator {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  cursor: pointer;
  z-index: 99999;
  transition: all 0.3s ease;
}

.side-indicator::before {
  content: '';
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 1px;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.side-indicator.left {
  left: 0;
  border-radius: 0 8px 8px 0;
}

.side-indicator.right {
  right: 0;
  border-radius: 8px 0 0 8px;
}

.side-indicator.left::before {
  border-right: none;
  border-top: none;
  margin-left: 8px;
}

.side-indicator.right::before {
  border-left: none;
  border-bottom: none;
  margin-right: 8px;
}

.side-indicator:hover {
  background: rgba(0, 0, 0, 0.6);
  width: 45px;
}

.side-indicator:hover::before {
  border-color: rgba(255, 255, 255, 1);
}

/* Sidebar styles */
.side-section {
  position: fixed;
  top: 0;
  height: 100vh;
  width: 400px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.left-section {
  left: 0;
  transform: translateX(-380px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.right-section {
  right: 0;
  transform: translateX(380px);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sidebar content */
.side-section .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
  overflow-x: hidden;
  height: 100%;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.6) transparent;
}

/* Scrollbar styling */
.side-section .content::-webkit-scrollbar {
  width: 8px;
}

.side-section .content::-webkit-scrollbar-track {
  background: transparent;
}

.side-section .content::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.side-section .content::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Show sidebar on hover */
.side-section:hover,
.side-indicator:hover + .side-section {
  transform: translateX(0);
  background: rgba(0, 0, 0, 0.95);
}

.section-header h2 {
  color: #ffffff;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
}

body {
  position: relative;
}
