@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
  --bs-primary: #4F74F6;
  --bs-primary-rgb: 79, 116, 246;
  --bs-secondary: #A1B5FF;
  --bs-secondary-rgb: 161, 181, 255;
}

/* Custom brand colors */
.btn-primary {
  background-color: #4F74F6 !important;
  border-color: #4F74F6 !important;
}
.btn-primary:hover {
  background-color: #3A5FDD !important;
  border-color: #3A5FDD !important;
}

.btn-secondary {
  background-color: #A1B5FF !important;
  border-color: #A1B5FF !important;
}

.btn-secondary:hover {
  background-color: #8B9EFF !important;
  border-color: #8B9EFF !important;
}

.text-primary {
  color: #4F74F6 !important;
}

.border-primary {
  border-color: #4F74F6 !important;
}

* {
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background: #f8f9fa !important;
  overflow-x: hidden;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 240px;
  height: 100vh;
  background: #212529;
  display: flex;
  flex-direction: column;
  z-index: 1030;
}

.sidebar a {
  color: #adb5bd;
  padding: 10px;
  border-radius: 6px;
}

.sidebar a:hover,
.sidebar a.active {
  background: #343a40;
  color: #fff;
}

/* Main content */
.main-content {
  margin-left: 240px;
  padding: 24px;
}

/* Mobile */
@media (max-width: 768px) {
  .sidebar {
    display: none;
  }
  .main-content {
    margin-left: 0;
  }
}
