/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
:root {
  --foreground-rgb: 0, 0, 0;
  --background-start-rgb: 214, 219, 220;
  --background-end-rgb: 255, 255, 255;
}

body {
  color: rgb(var(--foreground-rgb));
  background: linear-gradient(
      to bottom,
      transparent,
      rgb(var(--background-end-rgb))
    )
    rgb(var(--background-start-rgb));
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 250px;
  background: #f0f0f0;
  padding: 20px;
  border-right: 1px solid #ccc;
}

.main {
  flex: 1 1;
  padding: 20px;
  overflow-y: auto;
}

.user-list {
  list-style: none;
  padding: 0;
}

.user-item {
  padding: 10px;
  margin-bottom: 5px;
  background: white;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
}

.user-item.active {
  border-color: #0070f3;
  font-weight: bold;
}

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

nav li {
  margin-bottom: 10px;
}

nav a {
  text-decoration: none;
  color: #0070f3;
}

nav a:hover {
  text-decoration: underline;
}

