.message-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 10px auto; 
    background-color: rgb(158, 192, 204);
    text-align: center; 
  }
  
  .message-text {
    flex: 1;
    padding-right: 10px;
    font-size: 16px;
    text-align: left;
  }
  
  .remove-message {
    cursor: pointer;
    font-size: 20px;
    color: black;
    text-align: right;
  } 

  .invoice-control {
    /* height: 4em; */
    border-radius: 5px;
    border: 1px solid transparent; /* Set a default border style (invisible) */
    transition: border-color 0.3s ease-in-out; /* Add a smooth transition effect */
}

.invoice-control:hover {
    border-color: #4e4c4c; /* Change the border color on hover */
}
  
  .rounded-box {
      border: 1px dashed #dbe8fd;
      display: flex;
      flex-direction: column;
      align-items: center;
      border-radius: 6px;
      margin-bottom: 20px;
      font-size: 14px;
      color: #5b9aff;
      cursor: pointer;
      text-align: center;
      background-color: #fbfcff;
      margin-right: 10px;
      width: 250px;
      height: 150px;
      margin-top: 20px;
      position: relative;
  }
  
  /* Optional: Adjust the styles for the icon and text */
  .rounded-box i {
      margin-bottom: 10px; /* Add space between icon and text */
  }

  .upload-text {
      text-align: center;
      font-size: 16px;
      font-weight: bold;
      padding-top: 10px;
  }
  
  /* Make the label cover the full area of the box */
  .rounded-box label {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative; 
  }

  
.file-input {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* Your existing CSS styles for rounded-box, icon, etc. */ 

#selectedImage {
  width: 250px;
  height: 150px;
  margin-top: 0px; /* Adjust spacing as needed */
  display: none; /* Initially hide the selected image */
}

.hide-upload-icon i {
  display: none; /* Hide the upload icon when this class is applied */
}

.hide-upload-image img {
  display: none; /* Hide the upload icon when this class is applied */
}

.hide-upload-icon h6 {
  display: none; /* Hide the upload icon when this class is applied */
}



  
  
  /* .file-input {
    font-size: 10px;
    position: absolute;
    left: 50px;
    top: 120px;
    opacity: 2;
    cursor: pointer;
    display: flex;
    flex-direction: column;
  }
   */
  
  /* Add these CSS rules to your styles.css or in a <style> block */
  .upload-section-note {
      font-size: 16px;
      margin-left: 10px; /* Add space between the two columns */
    }
    
    .upload-section-note > div {
      font-size: 14px;
      color: #666;
      display: block; /* Display each description on a new line */
    }
  
    .font-size-50 {
      font-size: 50px; /* Adjust the size to your preference */
    }
  
    
    input.adr {
      width: 70%; 
    }
  
  
    .invoice-container {
      display: flex;
      flex-direction: row;
  }
  
  
  .bill-to-section {
      flex: 1;
      /* Your existing styles for the Bill To section */
  }
  
  .invoice-details {
      flex: 1;
      padding-left: 20px; /* Adjust the padding as needed */
  }
  
  .input-group {
      display: flex;
      flex-direction: row;
      align-items: center;
      margin-bottom: 10px; /* Add spacing between fields as needed */
  }
  
  .input-group input {
      flex: 1;
  }
  
  .space-after{
      margin-top: 70px;
  }
  
  .space {
      margin-top: 40px; /* Adjust the value as needed to create the desired space */
  }
  
  /* Use a parent selector to increase specificity */
  .invoice-details .input-group input.w50 {
      width: 50%;
  }
  
  /* Add this CSS to your stylesheet to adjust spacing */
  .invoice-details .input-group table tr td {
      padding: 5px; /* Adjust the padding as needed to control spacing */
  }

  .form-control {
    box-sizing: border-box;
}
  
  /* .table-responsive thead tr {
      background-color: black !important;
      color: white !important;
  }
   */
  
  /* .custom-input {
      width: 50px; 
      padding: 0; 
    } */
    .custom-input-trigger {
      position: relative;
      top: -20px;
      width: 50px; /* Adjust the width to your desired size */
      height: 30px; /* Adjust the height to your desired size */
    }
    
    .initial-value {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
    }
    
    .custom-input {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: pointer;
      z-index: 2;
      transition: opacity 0.3s;
    }
    
    .custom-input-trigger:hover .custom-input {
      opacity: 1;
    }
    
    .custom-input-trigger:hover .initial-value {
      opacity: 0;
    }
  
    
  
  .input-trigger {
      position: relative;
      top: -30px;
      width: 50px; /* Adjust the width to your desired size */
      height: 30px; /* Adjust the height to your desired size */
    }
    
    .initial {
      position: absolute;
      top: 10px;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
    }
    
    .custom {
      position: absolute;
      top: 10px;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      cursor: pointer;
      z-index: 2;
      transition: opacity 0.3s;
    }
    
    .input-trigger:hover .custom {
      opacity: 1;
    }
    
    .input-trigger:hover .initial {
      opacity: 0;
    }
  
    .custom[type="number"]::-webkit-inner-spin-button,
  .custom[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  .edit-rounded-box {
    border: 1px dashed #dbe8fd;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #5b9aff;
    cursor: pointer;
    text-align: center;
    background-color: #fbfcff;
    margin-right: 10px;
    width: 250px;
    height: 150px;
    margin-top: 20px;
}

/* Optional: Adjust the styles for the icon and text */
.edit-rounded-box i {
    margin-bottom: 10px; /* Add space between icon and text */
}

.edit-upload-text {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding-top: 10px;
}

/* Add these CSS rules to your styles.css or in a <style> block */
.edit-upload-section-note {
  font-size: 16px;
  margin-top: -120px;
  margin-left: 270px; /* Add space between the two columns */
}

.edit-upload-section-note > div {
  font-size: 14px;
  color: #666;
  display: block; /* Display each description on a new line */
}

.edit-font-size-50 {
  margin-top: -150px;
  font-size: 50px; /* Adjust the size to your preference */
}


/* Make the label cover the full area of the box */
.edit-rounded-box label {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



  