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

html, body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #f5f7fa;
  color: #1a1a2e;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

/* Tabellen-Inputs */
.cell-input {
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
  padding: 6px 8px;
  font-size: 0.875rem;
  text-align: right;
  border-radius: 4px;
  transition: all 0.15s;
  outline: none;
}
.cell-input:hover {
  border-color: #ccc;
  background: #fff;
}
.cell-input:focus {
  border-color: #1976d2;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.15);
}

/* Ampel-Farben */
.ampel-gruen { color: #2e7d32; font-weight: 600; }
.ampel-gelb  { color: #f57f17; font-weight: 600; }
.ampel-rot   { color: #d32f2f; font-weight: 600; }

.bg-ampel-gruen { background-color: #e8f5e9; }
.bg-ampel-gelb  { background-color: #fff8e1; }
.bg-ampel-rot   { background-color: #ffebee; }

/* Logo Header */
.formelf-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.formelf-logo {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #1976d2, #1565c0);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}
.status-aktiv { background: #e8f5e9; color: #2e7d32; }
.status-inaktiv { background: #ffebee; color: #d32f2f; }
.status-entwurf { background: #fff8e1; color: #f57f17; }

/* Landing Page */
.hero-section {
  background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #1565c0 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.module-card {
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  height: 100%;
}
.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

