/* Main container for layout */
.version-display-container {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* Header styling */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
}

.header .brand-selector {
  display: flex;
  gap: 10px; /* Space between the dropdowns */
  align-items: center;
}

.header .dropdown {
  width: 200px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  background-color: #f9f9f9;
}

.header .dropdown:hover,
.header .dropdown:focus {
  border-color: #007bff;
}

/* Content container */
.content-container {
  display: flex;
  flex: 1;
  overflow: hidden;
}




.content-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Submodule details */
.submodule-details {
  flex: 0.5;
}

.example-response {
  flex: 0.5;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.example-response-box {
  background-color: #f9f9f9;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-top: 20px;
}

.example-response-box pre {
  white-space: pre-wrap;
  word-break: break-word;
  color: #333;
  font-family: Courier, monospace;
}

.manage-button {
  display: flex;
  align-items: center; /* Vertically align items */
  justify-content: center; /* Optional: Horizontally center if needed */
  gap: 8px; /* Space between text and icon */
  padding: 8px 12px; /* Add some padding */
  font-size: 16px; /* Adjust font size */
  border: 2px solid black; /* Optional: Remove button border */
  background-color: white; /* Optional: Set background color */
  border-radius: 4px;
  cursor: pointer; /* Show pointer cursor */
  font-size: 13px;
  font-weight: bold;
}

.manage-button:hover {
  background: #0056B3;
  color: #fff;

}

.manage-icon {
  font-size: 18px; /* Adjust icon size */
}





/* Responsive adjustments */
@media (max-width: 768px) {
  .version-display-container {
    flex-direction: column; /* Stack sidebar and main content vertically */
  }

  .main-content {
    padding: 15px;
  }
}


