/* ==================================================
   BUTTON BASE
================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  padding: 12px 20px;
  border-radius: 6px;
  min-width: 120px;
  cursor: pointer;
  color: #fff;
  transition: opacity 0.2s ease;
}

.button:hover {
  opacity: 0.85;
  color: violet;
}

.btn {
  display: flex;
  gap: 10px;
  padding: 0.8em 2em;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 30px 30px;
}

.btn-primary {
  background: linear-gradient(90deg, #f5b301, #ff8c42);
  color: #120a1f;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(245,179,1,0.6);
}

.btn-outline {
  border: 2px solid #f5b301;
  color: #f5b301;
}

.btn-outline:hover {
  background: #f5b301;
  color: #120a1f;
}/* ========================================
   SIDEBAR - BASE
   ======================================== */

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: var(--sidebar-width, 280px);
  background-color: var(--color-sidebar-bg, #1a1a1a);
  color: var(--color-sidebar-text, #ffffff);
  padding: 20px 0;
  overflow-y: auto;
  z-index: 1000;
  transition: transform 0.3s ease, width 0.3s ease;
}

.sidebar-header {
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.sidebar-brand {
  font-size: 20px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}