@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/satoshi/Satoshi-Regular.woff2') format('woff2'),
         url('/fonts/satoshi/Satoshi-Regular.woff') format('woff'),
         url('/fonts/satoshi/Satoshi-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('/fonts/satoshi/Satoshi-Bold.woff2') format('woff2'),
         url('/fonts/satoshi/Satoshi-Bold.woff') format('woff'),
         url('/fonts/satoshi/Satoshi-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}


/* General Styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Satoshi;
  background-color: #f4f4f4;
}
h3 {
    margin-bottom: 10px;
}
h2 {
    text-align:center;
    margin-bottom: 20px;
}

.cost-summary {
    padding-bottom: 10px;
}
.cost-summary-p {
    font-size: 20px;
    font-weight: 600;
}

/* Navigation bar styles */
.navbar {
  width: 100%;
  background-color: #f4f4f4; /* Matches the body background */
  padding: 10px 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.navbar .logo img {
  height: 40px; /* Adjust the height of the logo as needed */
}

/* Neuer Hauptcontainer für maximale Breite */
.main-container {
  max-width: 1400px;
  margin: 0 auto; /* Zentriert den Container */
}

/* Container für linke und rechte Seite */
.configurator-container {
  display: flex;
  justify-content: space-between;
  min-height: 100vh;
  overflow: auto; /* Verhindert ungewolltes Scrollen */
    padding: 40px;
    gap: 40px;
}

/* Linke Seite */
.image-grid {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Stellt sicher, dass alle Elemente von oben nach unten aufgeteilt sind */
  padding: 20px;
  background-color: #f4f4f4;
}

/* Rechte Seite scrollbar machen */
.config-options {
  width: 45%; /* Passe dies je nach Breite der linken Seite an */
  height: 100vh;
  overflow-y: auto; /* Scrollbar nur auf der rechten Seite */
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Flexbox grid layout (left side) */
.image-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 50%;
}

.flex-row {
  display: flex;
  gap: 10px;
}

.flex-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Individual grid items */
.grid-item {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  padding: 0px;
  border-radius:12px;
  overflow: hidden;
}

.big-box {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #67C3D4, #42A2B9); /* Erstelle den Farbverlauf */
  
}

.small-box {
  width: 100%;
  max-width: 33.3333%;
  min-width: 115px;
  height: 115px;
}

.small-box2 {
  width: 100%;
  min-width: 145px;
  height: 95px;
  background: linear-gradient(135deg, #e3c102, #f6d103); /* Erstelle den Farbverlauf */
}

.small-box3 {
  width: 100%;
  min-width: 145px;
  height: 95px;
  background: linear-gradient(135deg, #fda502, #fda502); /* Erstelle den Farbverlauf */
}

.wide-box {
  width: 100%;
  height: 150px;
  background: #4cae75;
  background: linear-gradient(135deg, #4cae75, #085954);
}

/* Placeholder image styles */
.grid-item img {
  max-width: 100%;
  max-height: 100%;
}



.config-options h2 {
  margin-bottom: 25px;
  text-align:center;
}

.option {
  margin-bottom: 100px;
}

.option-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Button Styling */
.webhook-trigger button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  background-color: #4cae75;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.webhook-trigger button:hover {
  background-color: #318052;
}


.horizontal-radio-group {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
}

.image-radio {
  text-align: center;
}

.radio-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #ccc;
  transition: border-color 0.3s ease;
}

input[type="radio"]:checked + .image-radio .radio-image {
  border-color: #007bff;
}

.option-item {
  display: inline-block;
  cursor: pointer;
  margin-right: 0px;
  min-width:90px;
  max-width:140px;
}

p {
  margin-top: 5px;
  font-size: 14px;
  color: #333;
}

input[type="radio"] {
    opacity: 0;
}
