/* Existing styles */

.models-title {
    font-size: 36px;
    color: #c3c3c3;
    text-align: center;
    padding-top: 20px;
    text-decoration: underline;
}

.models-subtitle {
    font-size: 24px;
    color: #c3c3c3;
    text-align: center;
    padding-top: 10px;
}

.models-btn-container {
    width: 800px;
    margin: 0 auto;
}

.models-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.add-model-btn,
.modify-model-btn,
.remove-model-btn {
    font-size: 24px;
    color: #c3c3c3;
    background-color: #000000;
    border: 2px solid #c3c3c3;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0s;
}

.add-model-btn:hover {
    color: #13f038;
    border-color: #13f038;
}

.modify-model-btn:hover {
    color: #ffe600;
    border-color: #ffe600;
}

.remove-model-btn:hover {
    color: #ff3737;
    border-color: #ff3737;
}

.add-model-category-container {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto; /* Enable scrolling */
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}

.add-model-category-container.show {
    display: block;
}

.close-category-btn {
    font-size: 36px; /* Increased font size */
    color: #c3c3c3;
    background-color: #000000;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 1;
}

.add-model-category-box {
    width: 800px;
    margin: 200px auto;
    background-color: #000000;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: relative; /* Added position: relative */
    margin-top: 470px;
    border: 2px solid #13f038;
}

.add-model-category-title {
    font-size: 36px;
    color: #13f038;
    text-align: center;
    margin-bottom: 40px;
}

.add-model-category-subtitle {
    font-size: 24px;
    color: #c3c3c3;
    text-align: left;
    margin-bottom: 20px;
}

.add-model-category-dropdown {
    font-size: 24px;
    color: #000000;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.enter-model-title {
    font-size: 24px;
    color: #c3c3c3;
    text-align: left;
    margin-bottom: 10px;
    margin-top: 20px;
}

.model-title-input {
    font-size: 24px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

/* Upload Images Box Code */

.upload-images-title {
    font-size: 24px;
    color: #c3c3c3;
    text-align: left;
    margin-bottom: 10px;
    margin-top: 20px;
}

.image-upload-container-wrapper {
    display: inline-block;
    vertical-align: top;
    width: 100%; /* Increased width */
    margin-left: 5px; /* Space from title */
  }
  
  
.image-upload-container {
    display: flex;
    flex-wrap: wrap;
}

.add-more-images-btn {
    margin-left: 20px;
    margin-bottom: 40px;
}
  

.image-upload-box {
    position: relative;
    width: 200px;
    height: 200px;
    border: 1px solid #c3c3c3;
    margin-right: 20px;
    margin-bottom: 20px;
}

.upload-image-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.uploaded-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.add-more-images-btn {
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.remove-selected-image-btn {
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}

.image-upload-box:hover .remove-selected-image-btn {
    display: block;
  }

  .enter-specifications-title {
    margin-top: 40px;
    color: #c3c3c3;
    font-size: 24px;
  }
  
  .specifications-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Existing style */
    margin-left: 0; /* Remove left margin */
    padding-left: 0; /* Remove left padding */
  }

  .specification-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  margin-left: 0; /* Add this */
  padding-left: 0; /* Add this */
}

.specification-row label {
  margin-right: 20px;
  width: 200px;
  text-align: left; /* Change from right to left */
  color: #c3c3c3;
}
  
  .specification-input-date {
    width: 300px;
    padding: 10px;
    border: 1px solid #c3c3c3;
    border-radius: 5px;
  }

  .specification-input-product {
    width: 300px;
    padding: 10px;
    border: 1px solid #c3c3c3;
    border-radius: 5px;
  }

  .specification-input-polygon {
    width: 300px;
    padding: 10px;
    border: 1px solid #c3c3c3;
    border-radius: 5px;
  }

  .specification-input-vertices {
    width: 300px;
    padding: 10px;
    border: 1px solid #c3c3c3;
    border-radius: 5px;
  }

  .dollar-price {
    margin-bottom: 10px;
  }

  .dollar-price label {
    margin-right: 20px;
    width: 200px;
    text-align: left; /* Change from right to left */
    color: #c3c3c3;
    font-size: 24px;
  }

  .dollar-input-price {
    width: 300px;
    padding: 10px;
    border: 1px solid #c3c3c3;
    border-radius: 5px;
    margin-left: 46px;
  }
  
  .checkbox-row {
    margin-left: 0; /* Add this */
    padding-left: 0; /* Add this */
  }
  
  .checkbox-container {
    margin-left: 0; /* Add this */
    padding-left: 0; /* Add this */
  }
  
  .checkbox-container input[type="checkbox"] {
    margin-right: 10px;
  }
  
  .checkbox-container label {
    margin-right: 20px;
    color: #c3c3c3;
  }

  .checkbox-spacing {
    margin: 0 25px; /* Adjust spacing as needed */
  }
  
  .upload-images-title {
    color: #c3c3c3;
  }

  .file-upload-section {
    margin-top: 10px;
  }
  
  .file-upload-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 24px;
  }
  
  .file-upload-label {
    margin-right: 20px;
    width: 350px;
    text-align: left;
    color: #c3c3c3;
  }
  
  .file-upload-input {
    width: 300px;
    padding: 10px;
    border: 1px solid #c3c3c3;
    border-radius: 5px;
  }
  
  .perform-file-check-btn {
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #13aff0; /* Combined border styles */
    border-radius: 5px;
    cursor: pointer;
    background-color: #000000;
    color: #c3c3c3;
    margin-top: 20px;
  }