/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #1a1a1a;
  background: #f5f5f5;
}

/* Layout */
.app-shell {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* Sidebar nav */
.sidebar {
  width: 200px;
  flex-shrink: 0;
  background: #ffffff;
  border-right: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  overflow-y: auto;
}

.sidebar-logo {
  padding: 0 16px 20px;
  font-weight: 700;
  font-size: 15px;
  color: #111;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 8px;
}

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

.sidebar nav ul li a {
  display: block;
  padding: 8px 16px;
  color: #444;
  text-decoration: none;
  font-size: 14px;
  border-radius: 4px;
  margin: 2px 8px;
  transition: background 0.15s, color 0.15s;
}

.sidebar nav ul li a:hover {
  background: #f0f0f0;
  color: #111;
}

/* Main content */
.main-content {
  flex: 1 1;
  overflow-y: auto;
  padding: 24px 32px;
}

/* Page headings */
h1 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}

h2 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

/* Card / section */
.card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 16px 20px;
  margin-bottom: 16px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-gap: 16px;
  gap: 16px;
  margin-bottom: 24px;
}

/* Empty state */
.empty-state {
  color: #999;
  font-size: 13px;
  padding: 8px 0;
}

/* Stat row */
.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #111;
}

.stat-label {
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}

/* Placeholder page */
section.placeholder {
  padding: 40px 0;
}

section.placeholder p {
  color: #999;
  margin-top: 8px;
}

