/* Styling for the form container */
#userConfigFormContainer {
  position: fixed;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background-color: #f2f2f2;
  border-radius: 15px;
  overflow-y: auto;
  padding: 20px;
}
.imageUploadBox-container {
    width: 200px;
    height: 200px;
    border: 2px dashed #ccc;
    display: flex;
 
    justify-content: center;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    object-fit: contain;
    display: flex;

}

.imgPreview {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.uploadContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}
#fileInput {
    display: none;
}

#userConfigFormAuthorizedText {
    display: none;
}

.uploadIcon {
    font-size: 48px;
}
/* Styling for the hidden class */
.userConfigForm-hidden {
  display: none;
}
.userConfigFormAuthorized-text {
    color: #4CAF50;
}
/* Styling for the form section */
.base-page-formSection {
    margin-bottom: 20px;
}


.base-page-form-container {
  display: flex;
  justify-content: felx-end;
  align-items: center;
  padding: 0 10px; /* 10px margin on the left and right */
}
.base-page-left-text-box {
  flex-grow: 1; /* Allow the text container to take up remaining space */
  max-width: calc(100% - 100px); /* Limit the width to fit the button and margin */
  padding-right: 10px; /* 10px margin to the right of the text container */
  overflow: hidden; /* Hide any overflow */
}

.base-page-left-text-box span {
  display: block; /* Allow multiple lines of text */
}

.base-page-button {
  width: 80px;
  height: 30px;
  border-radius: 5px;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-left: auto; 
}

/* Styling for form buttons */
.base-page-formButtons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.base-page-formButtons button {
  width: 60px;
  height: 30px;
  border-radius: 5px;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  cursor: pointer;
}

 