.table {
  border-spacing: 0;
  margin: 1rem;
  background-color: #f5f5f5 ;
}

.table__row::content {
  background-color: #e5e5e5;
}

.table__header {
 text-align: left;
 background-color: #a0c8f0; /* Set your preferred color for the header row */   
}

.table__cell {
  padding: 8px; 
}

.icon-buy::before {
  content: "\f07a"; /* Unicode für das Kauf-Icon (z.B. ein Einkaufswagen) */
  font-family: FontAwesome; /* Sie können eine passende Icon-Schriftart verwenden */
  color: green;
}

.icon-sell::before {
  content: "\f08b"; /* Unicode für das Verkaufs-Icon (z.B. ein Geldschein) */
  font-family: FontAwesome; /* Sie können eine passende Icon-Schriftart verwenden */
  color: red;
}

.order-line {
  text-align: left;   
 }

 /* style.css */
.container-group {
  display: flex;
  margin-bottom: 0.2cm; /* Fügt einen Abstand von 0,2 cm unterhalb der Container-Gruppen hinzu */
}

.container {
  width: 3.5cm;
  height: 1cm;
  border: 1px solid #000;
  background-color: #D3D3D3;
  padding: 0.2cm;
  text-align: center;
  margin-right: 10px; /* Fügt einen Abstand zwischen den Containern hinzu */
}

.numeric-field {
  width: 2cm;
  height: 0.5cm;
  background-color: #D3D3D3;
  font-size: 12px;
  font-weight: bold; /* Fett darstellen */
}

.description-field {
  width: 2cm;
  height: 0.25cm;
  background-color: #D3D3D3;
  font-size: 10px;
  color: #000;
}

.red-text {
  color: red; /* Textfarbe in Rot ändern */
  padding: 8px;  
  font-weight: bold; /* Text fett gedruckt anzeigen */ 
}

.red-underline {
  border-bottom: 3px solid red; /* Unterstreichung in Rot hinzufügen */
  width: 100px; /* Hier können Sie die Breite der Unterstreichung anpassen */
  bottom: 1.5em; /* Erhöhen Sie den Wert, um die Unterstreichung höher anzuzeigen */
  text-align: left; 

}
.table th {
  background-color: #a0c8f0; /* Set your preferred color for the header row */
}




