
.plug-floor-panel {
  position: absolute;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 50%;
  background-color: #b2b2b2;
  right: 0;
  bottom: 0px;
  z-index: 999999;
}

.fed-price-label,
.price-label {
  color: black; /* Text color, adjust if needed */
  font-weight: bold; /* Makes the text bold */
  font-size: 16px; /* Adjust the font size as per your requirement */
  margin-top: 10px; /* Adds a margin on the top to space it from the button above */
}

.line-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 80%;
}

.vertical-line {
  width: 0px;
  height: 60px;
  background-color: black;
  position: relative;
}

.fa-check {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -50%);
  font-size: 14px;
  color: green;
}


.plug-floor-logo {
  width: 100px;
  height: 100px;
  border: 1px;
}

.plug-icon {
  margin-right: 5px;
}

.price-container {
  position: absolute;
  top: 50%;
  left: 100%; /* Position it to the right side of the plug-icon */
  transform: translateY(-50%); /* Vertically center align it */
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 40px;
}

.price-text {
  width: 100px;
  font-size: 16px;
  color: yellow;
  padding-left: 5px;
}

.plug-floor-creation-div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.plug-input-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 50px;
  padding: 10px;
  background-color: transparent;
}

.floorid-input-box {
  flex: 1;
  padding: 10px;
  border-color: gray;
  border-radius: 5px;
  font-size: 16px;
  background-color: #fff;
  color: var(--text-color);
}

.status-box {
  width: 100%;
  padding: 5px;
  font-size: 14px;
  text-align: center;
  color: white;
  width: 100%;
  min-height: 30px;
}

.check-btn {
  margin-left: 10px;
  margin-right: 0px;
  padding: 10px 10px;
  border: none;
  background-color: #007BFF;
  color: #FFF;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
}

.plugged-floor-div {
  flex-direction: column;
  align-items: center;
}
.creation-success-gif {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./images/success.gif');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 999; /* Show the GIF below other content */
}

.plug-floor-btn {
  margin-top: 5px;
  margin-left: 10px;
  padding: 10px 10px;
  border: none;
  background-color: gray;
  color: #FFF;
  font-size: 16px;
  cursor: pointer;
  border-radius: 20px;
  width: 34%;
  cursor: auto;
}

.plugged-floor-logo {
  width: 100px;
  height: 100px;
  border: 1px;
}

.plugged-floor-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-left: 10px;
  margin-top: 10px;
}

.floor-share-btn,
.floor-close-btn,
.floor-edit-btn {
  padding: 8px 8px;
  border: none;
  background-color: #007BFF;
  color: #FFF;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
}

.plug-footer-notes {
  text-align: center;
  margin-top: 40px;
  font-size: 10px;
  color: white;
}

.plug-footer-notes a {
  color: inherit;
  text-decoration: none;
}

.plug-footer-notes   a:hover {
  color: #007bff;
}

.plug-floor-creation-div,
.plugged-floor-div {
  transition: opacity 0.5s, visibility 0.5s;
  opacity: 1;
  display: flex;
}

.hidden {
  opacity: 0;
  visibility: hidden;
  display: none;
}

/* Generic container for inputs */
.input-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 0px;
  max-width: 100%;
  background-color: transparent;
  padding: 16px;
  padding-top: 6px;
  padding-bottom: 6px;
}

/* Label styling */
.input-container label {
  font-weight: 600;
  color: #fff;
}

/* Styling for the title input */
#titleInput {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s ease-in-out;
  margin-right: 0px !important;
}

#titleInput:focus {
  border-color: #007BFF;
  outline: none;
}

/* Styling for the description textarea */
#descriptionInput {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s ease-in-out;
  resize: vertical;  /* Allows users to adjust the height vertically */
}

#descriptionInput:focus {
  border-color: #007BFF;
  outline: none;
}

#locationInput {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.3s ease-in-out;
  margin-right: 0px !important;
}

#locationInput:focus {
  border-color: #007BFF;
  outline: none;
}

/* Styling for the image thumbnail input */
#imageInput {
  display: flex;  /* We'll use the label for styling */
  
}

/* This gives a styled button appearance to the label for the image input */
.input-container label[for="imageInput"] {
  padding: 10px 15px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  transition: background-color 0.3s ease-in-out;
}

.input-container label[for="imageInput"]:hover {
  background-color: #0056b3;
}

/* Image preview styles */
#imagePreview {
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-left: 10px;
}




/* CSS for the mobile view of the left panel */
@media (max-width: 767px) {

  .plug-floor-panel {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    justify-content: flex-start;
    padding-top: 2px;
  }
  
  .plug-floor-logo {
    width: 50px;
    height: 50px;
    border: 1px;
  }

  .plug-input-container {
    width: 80% !important;
    border-radius: 5px;
  }

  .floorid-input-box {
    width: 150px !important;
  }

  .create-floor-btn {
    width: 70%;
  }

  .status-box {
    width: 70%;
  }
}
/* Style for highlighted elements */
.highlighted {
  font-weight: bold; /* Example: Makes highlighted text bold */
  color: rgb(58, 105, 224); /* Change this to your preferred color */
  border-color: #0056b3;
  background-color: #007BFF;
}

/* Style for non-highlighted elements */
.templatetitleclassTick {
  color: rgb(255, 253, 253);
  border: 1px solid rgb(100, 100, 100);
 

}

