/* General Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

.navbar {
  background-color: #4caf50;
  padding: 10px;
  text-align: center;
}

.navbar a {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
}

.center-box {
  max-width: 400px;
  margin: 50px auto;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.hidden {
  display: none;
}

.welcome-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #f1f1f1;
  margin: 20px auto;
  max-width: 600px;
  border-radius: 8px;
}

.card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card h3 {
  margin-bottom: 10px;
}

.card pre {
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 4px;
  overflow-x: auto;
}

input {
  margin: 5px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  margin: 5px;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-primary {
  background-color: #007bff;
  color: white;
}

.btn-danger {
  background-color: #dc3545;
  color: white;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-danger:hover {
  background-color: #c82333;
}

/* Container for cards */
#actions-section {
  display: flex;
  flex-wrap: wrap; /* Allow cards to wrap to the next row */
  gap: 15px; /* Add spacing between the cards */
  justify-content: center; /* Center the cards horizontally */
}

/* Individual card styling */
.card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  width: 300px; /* Fixed width for each card */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card h3 {
  margin-bottom: 10px;
  text-align: center;
}

.card pre {
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 4px;
  overflow-x: auto;
  width: 100%;
  text-align: left;
}

input {
  margin: 5px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  margin: 5px;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.btn-primary {
  background-color: #007bff;
  color: white;
}

.btn-primary:hover {
  background-color: #0056b3;
}

#swaggerLink {
  font-size: 16px; /* Text size */
  color: #007bff; /* Link color */
  text-decoration: none; /* Remove underline */
  display: inline-flex; /* Align text and icon */
  align-items: center; /* Vertically center */
  gap: 5px; /* Space between text and icon */
}

#swaggerLink:hover {
  text-decoration: underline; /* Add underline on hover */
}

.swagger-icon {
  width: 16px; /* Set the width of the icon */
  height: 16px; /* Set the height of the icon */
  fill: #007bff; /* Match the icon color with the text color */
}

#downloadLink {
  font-size: 16px; /* Text size */
  color: #007bff; /* Link color */
  text-decoration: none; /* Remove underline */
  display: inline-flex; /* Align text and icon */
  align-items: center; /* Vertically center */
  gap: 5px; /* Space between text and icon */
}

#downloadLink:hover {
  text-decoration: underline; /* Add underline on hover */
}

.swagger-icon {
  width: 16px; /* Set the width of the icon */
  height: 16px; /* Set the height of the icon */
  fill: #007bff; /* Match the icon color with the text color */
}
