/* Shared Styles for all pages in the wizard */
.SIIDI_Designer.container {
  display: flex;
  width: 100%;
  height: calc(100vh - 147px);
  box-sizing: border-box;
}

.SIIDI_Designer.content-wrapper {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.SIIDI_Designer.content-area {
  display: flex;
  flex: 1;
}

.SIIDI_Designer.main-content.standard-layout {
  flex-direction: column;
}

.SIIDI_Designer.buttons-container.standard-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #ffffff;
  flex-shrink: 0;
}

.SIIDI_Designer.main-content {
  display: flex;
  flex: 1;
  width: 100%;
}

.SIIDI_Designer.right-side {
  flex: 2;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Styling for the preview section */
.SIIDI_Designer.preview-section,
.SIIDI_Designer.navigation-panel {
  flex: 1;
  padding: 20px 0px 20px 20px;
  background-color: #eceff1;
}

/* Shared header styling */
.SIIDI_Designer.preview-header,
.SIIDI_Designer.intro-header,
.SIIDI_Designer.parameters-header,
.SIIDI_Designer.navigation-header {
  font-size: 18px;
  font-weight: bold;
  color: black; /* Change header color to black */
}

/* Define shared styles for content */
.SIIDI_Designer.preview-content,
.SIIDI_Designer.intro-content,
.SIIDI_Designer.parameters-content {
  font-size: 14px;
}

.SIIDI_Designer.content-section {
  flex: 1;
    padding: 20px;
    background-color: #ffffff;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Base input and textarea styles */
.SIIDI_Designer input,
.SIIDI_Designer textarea {
  padding: 10px;
  box-sizing: border-box;
  border: 2px solid #000;
  border-radius: 0;
}

.SIIDI_Designer .form-group label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .SIIDI_Designer.container {
      padding: 15px;
  }
  .SIIDI_Designer.preview-section {
      padding: 15px;
  }
}

@media (max-width: 900px) {
  .SIIDI_Designer.container {
      padding: 10px;
  }
  .SIIDI_Designer.preview-section {
      padding: 10px;
  }
}

@media (max-width: 600px) {
  .SIIDI_Designer.container {
      flex-direction: column;
      height: auto; /* Adjust height for small screens */
  }
  .SIIDI_Designer.preview-section {
      width: 100%;
      margin-right: 0;
      padding: 5px;
  }
}