/* File Uploads
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.upload {
  background-image: url("/assets/icons/upload.svg");
  background-position: center left 8px;
  background-size: 18px;
  background-repeat: no-repeat;
  background-color: transparent; 
  color: #FFFFFF;
  border: 1px solid #4C9BE8;
  border-radius: 6px;
  text-align: left;    
  display: inline-block;
  font-size: 12px;
  margin: 12px;
  line-height: 1rem;
  letter-spacing: 0.00625rem;
  font-weight: 500;
  font-style: normal;
  padding: 0.42em 1.5em 0.42em 2.5em;
  object-fit: contain;
  position: relative;    
  width: 216px; /* Text should not exceed 35 characters */
}

.upload:hover {
  background-image: url("/assets/icons/upload.svg");
  background-color: #3D7CBA;
  background-size: 18px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.30), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
}
  
.upload_success {
  color: #5DB85B;
  width: 225px;
  font-size: 12px;
  border-radius: 4px;
  text-align: left;
  margin: 12px;
}

.upload_fail {
  color: #c40c0c;
  width: 225px;
  font-size: 12px;
  border-radius: 4px;
  text-align: left;
  margin: 12px;
}



/* Save & Validate Button 
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.save_and_validate_button {
  position: relative;
  bottom: 0; /* Position the button at the bottom of the upload container */
  left: 80px; /* Position the button to the far right */
}

.save_and_validate_button {
  background: transparent;
  color: #F8F8F8;
  border: 1px solid #4C9BE8;
  border-radius: 5px;
  padding: 0.42em 0.67em;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin: 0px;
  line-height: 0.5rem;
  letter-spacing: 0.00625rem;
  font-weight: bold;
  font-style: normal;
  cursor: pointer;
}

.save_and_validate_button:hover {
  background-color: #3D7CBA;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.30), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
}


/* Card Button Save & Validate an Upload */
/* need to clean this up.... */
.card_button_save_and_validate {
  background: transparent;
  color: #F8F8F8;
  border: 1px solid #4C9BE8;
  border-radius: 5px;
  padding: 0.42em 0.67em;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin: 0px;
  line-height: 0.5rem;
  letter-spacing: 0.00625rem;
  font-weight: bold;
  font-style: normal;
  cursor: pointer;
}






/* ------------------------------------------------------------------------------------- */
/* 🚀 UX V3  */ 
/* ------------------------------------------------------------------------------------- */

/* .upload {
  background-image: url("/assets/icons/plus.svg") !important;
  background-position: center left 8px;
  background-size: 18px !important;
  background-repeat: no-repeat;
  background-color: #F8F9FA !important; 
  color: #1D1C1D !important;
  border: none !important;
  border-radius: 10px !important;
  text-align: left;    
  display: inline-block;
  font-size: 12px;
  margin: 12px;
  line-height: 1rem;
  letter-spacing: 0.00625rem;
  font-weight: normal;
  padding: 0.42em 1.5em 0.42em 2.5em;
  object-fit: contain;
  position: relative;    
  display: flex !important;
  width: auto !important;
}

.upload:hover {
  background-image: url("/assets/icons/plus.svg") !important;
  background-color: #E3E5E6 !important;
  background-size: 18px !important;
  box-shadow: none !important;
  width: auto !important;    
} 

.upload_success {
  background-image: url("/assets/icons/check_outline_green.svg");
  background-repeat: no-repeat;
  color: #0ED90E; 
  font-size: 12px;
  border-radius: 4px;
  text-align: left;
  margin: 12px; 
} */