
.fed-creation-wizard-container {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: white;
  align-items: center;
  flex-direction: column;
  justify-content: start;
  display: none;
  align-items: center;
  justify-content: center;
}

.fed-hub-creation-page {
  background-color: #eadddd;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 750px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 500px;
}

.floor-input-container {
  display: flex;
  margin-bottom: 10px;
}

.floor-input-container input,
.floor-input-container textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 0;
}

.floor-check-btn {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  display: none;
}

.floor-check-btn:hover {
  background-color: #0056b3;
}

.new-floor-btn {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.new-floor-btn:hover {
  background-color: #0056b3;
}

.new-floor-btn#page1Close {
  background-color: #6c757d;
}

.new-floor-btn#page1Close:hover {
  background-color: #007BFF;
}

.floor-cat-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

#floorTitleInput {
  margin-right: 0px;
}

.fed-creation-header {
  height: 40px;
  background-color: #007BFF;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 0 0;
  margin-bottom: 10px;
  font-size: 18px;
}

.selected-category {
  background-color: #007BFF;
  color: white; /* Adjust the text color if needed */
}