/* Druckluftleckage Rechner - Custom Styles */

/* ============================================
   CSS-VARIABLEN aus Backend
   ============================================
   Diese werden im HTML-Head definiert:
   --dlr-bg         (Hintergrund Rechner)
   --dlr-text       (Textfarbe)
   --dlr-btn        (Button-Farbe)
   --dlr-readonly   (Readonly-Felder)
   --dlr-param-bg   (Parameterbox Hintergrund)
   ============================================ */

/* Base Styles */
#druckluft-rechner-root {
  font-family: inherit;
  color: var(--dlr-text, #1f2937);
  background: var(--dlr-bg, #052035);
}

#druckluft-rechner-root input,
#druckluft-rechner-root button,
#druckluft-rechner-root label {
  font-family: inherit;
}

/* Buttons - nutzen CSS-Variablen */
#druckluft-rechner-root button[style*="backgroundColor"] {
  transition: opacity 0.2s ease, transform 0.1s ease;
}

#druckluft-rechner-root button:hover:not(:disabled) {
  opacity: 0.9;
  transform: translateY(-1px);
}

#druckluft-rechner-root button:active:not(:disabled) {
  transform: translateY(0);
}

#druckluft-rechner-root button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Input Focus States */
#druckluft-rechner-root input[type="number"]:focus {
  outline: 2px solid var(--dlr-btn, #2563eb);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Readonly Fields - nutzen CSS-Variablen */
#druckluft-rechner-root input[readonly],
#druckluft-rechner-root .readonly-field {
  background-color: var(--dlr-readonly, #f3f4f6) !important;
  cursor: default;
}

/* Tabelle - Header mit Button-Farbe */
#druckluft-rechner-root table thead tr {
  background-color: var(--dlr-btn, #2563eb);
}

/* Parameterbox - nutzt CSS-Variable */
#druckluft-rechner-root .dark-bg-text {
  background-color: var(--dlr-param-bg, #eff6ff) !important;
}

/* Print Styles */
@media print {
  @page {
    margin: 2cm;
  }
  
  body {
    print-color-adjust: exact !important;
    -webkit-print-color-adjust: exact !important;
    background: white !important;
  }
  
  .no-print {
    display: none !important;
  }
  
  #druckluft-rechner-root {
    max-width: 100% !important;
    padding: 0 !important;
    background: white !important;
  }
  
  /* Verstecke Input-Felder, zeige Werte */
  #druckluft-rechner-root input[type="number"]:not([readonly]) {
    display: none !important;
  }
  
  #druckluft-rechner-root .print\:inline {
    display: inline !important;
  }
  
  #druckluft-rechner-root .print\:block {
    display: block !important;
  }
  
  /* Verhindere Seitenumbrüche in der Tabelle */
  table {
    page-break-inside: avoid;
  }
  
  tr {
    page-break-inside: avoid;
    page-break-after: auto;
  }
  
  thead {
    display: table-header-group;
  }
  
  /* Buttons verstecken */
  button {
    display: none !important;
  }
  
  /* Farben für Druck optimieren */
  #druckluft-rechner-root table thead tr {
    background-color: var(--dlr-btn, #2563eb) !important;
    color: white !important;
  }
}

/* Responsive Verbesserungen */
@media (max-width: 768px) {
  #druckluft-rechner-root {
    padding: 12px;
  }
  
  #druckluft-rechner-root table {
    font-size: 0.875rem;
  }
  
  #druckluft-rechner-root th,
  #druckluft-rechner-root td {
    padding: 0.5rem !important;
    font-size: 0.75rem;
  }
  
  /* Buttons auf Mobile kleiner */
  #druckluft-rechner-root button {
    font-size: 0.875rem;
    padding: 8px 12px !important;
  }
  
  /* Inputs auf Mobile besser lesbar */
  #druckluft-rechner-root input[type="number"] {
    font-size: 14px !important;
  }
}

@media (max-width: 640px) {
  /* Sehr kleine Screens - Tabelle scrollbar */
  #druckluft-rechner-root .overflow-x-auto {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  #druckluft-rechner-root table {
    min-width: 600px;
  }
}

/* Accessibility */
#druckluft-rechner-root *:focus-visible {
  outline: 2px solid var(--dlr-btn, #2563eb);
  outline-offset: 2px;
}

#druckluft-rechner-root button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

/* Smooth Scrolling */
#druckluft-rechner-root .overflow-x-auto {
  scroll-behavior: smooth;
}

/* Logo Styles */
#druckluft-rechner-root img[alt="Logo"] {
  max-width: 300px;
  max-height: 100px;
  height: auto;
  display: inline-block;
}

/* Loading State */
#druckluft-rechner-root:empty::before {
  content: "Rechner wird geladen...";
  display: block;
  text-align: center;
  padding: 40px;
  color: var(--dlr-text, #1f2937);
}

/* Tabellen-Hover-Effekt */
#druckluft-rechner-root tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.04);
  transition: background-color 0.15s ease;
}

/* Animation für neue Zeilen */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#druckluft-rechner-root tbody tr {
  animation: slideIn 0.3s ease;
}
/* --- IFRAME RUNDUNG --- */
.druckluft-rechner-iframe-wrapper {
    border-radius: 25px;
    overflow: hidden; /* wichtig, damit das iframe selbst rund ausgeschnitten wird */
}

#druckluft-rechner-iframe {
    border-radius: 25px;
}
/* --- IFRAME OUTER SHADOW --- */
.druckluft-rechner-iframe-wrapper {
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
}
/* überschreibt Tailwind .bg-white */
.bg-white {
    background-color: #052035 !important; /* deine Wunschfarbe */
}
.font-semibold.text-sm{
  color: #000 !important;
}
/* Spezifische Labels schwarz einfärben */
#druckluft-rechner-root label.font-semibold.text-sm {
    color: #000 !important;
}
#druckluft-rechner-root tr.bg-white {
    background-color: #ffffff !important;
}
/* Überschriften Unternehmenseingabe */
#druckluft-rechner-root label.block.text-sm.font-semibold.mb-1 {
    color: #ffffff !important;
}
/* Ruhiger, sauberer Hover-Effekt für Tabellenzeilen */
#druckluft-rechner-root table tr {
    transition: background-color 0.15s ease;
}
#druckluft-rechner-root table tr:hover {
    background-color: #f3f6fa !important; /* dezenter hellgrau-blau Ton */
}


