.feature-div-invoice {
  background-color: #282866;
  padding: 20px;
  color: white;
}

.feature-div-small {
  width: 90%;
  background-color: #282866;
  height: 40%;
}

.feature-div-small-right {
  width: 100%;
  background-color: #282866;
  height: 35%;
}

.feature-img-left {
  float: right;
  width: 70%;
  position: relative;
  top: -125px;
  left: 74px;
}

.feature-img-right {
  float: left;
  width: 60%;
  position: relative;
  top: 14px;
}

.h2features p {
  font-size: 32px;
  font-family: 'Calibri', Arial, sans-serif;
}

.h2features {
  color: #2b2b2b;
  line-height: 1.6;

}

.h2features h3 {
  text-transform: uppercase;
  color: #45418e;
  font-weight: bold;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 42px;
  font-family: 'Rushford Clean';
}

.featurebox h4 {
  color: #ffffff;
  font-size: 25px;
  font-family: 'Rushford Clean';
}

.featurebox p {
  color: #ffffff;
  font-size: 25px;
  font-family: 'Rushford Clean';
  margin: 0%;
}

.custom-button {
  background-color: #ffff;
  /* White background */
  color: #45418e;
  /* Purple text color */
  border-radius: 18px;
  /* Rounded corners */
  font-weight: 600;
  /* Bold font */
  box-shadow: 3px 6px 8px rgba(0, 0, 0, 0.49);
  /* Shadow effect */
  width: 50%;
  /* Set width */

  padding: 10px 20px;
  /* Add padding */
  text-align: center;
  /* Center-align text */
  cursor: pointer;
  /* Change cursor on hover */
  margin-left: 68%;
}
/* Change the modal background color */
.custom-modal {
  background-color: #45418e;
  /* Modal background color */
  color: #fff;
  /* Adjust text color for better contrast */
  border-radius: 20px;
  /* Rounded corners for the modal */
  padding: 20px;
  /* Inner padding for content spacing */
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.4);
}

/* Logo in the top-left corner */
.modal-logo {
  width: 132px;
  /* Adjust the logo size */
  height: auto;
  /* Maintain the aspect ratio */
  position: absolute;
  /* Position the logo outside the modal */
  top: -37px;
  /* Adjust the vertical position */
  left: -59px;
  /* Move the logo outside the modal on the left */
  z-index: 10;
  /* Ensure the logo is above other elements */
}

/* Modal Heading */
.larger-text {
  font-size: 1.5em;
  /* or any size you prefer */
}

/* Align logo and title */
.modal-header {
  display: flex;
  align-items: center;
  border-bottom: 0px solid #45418e;
  padding-bottom: 10px;
}

/* Modal title styles */
.modal-title {
  font-size: 20px;
  color: #ffffff;
  /* Optional: Accent color for the title */
  font-family: 'Rushford Clean';
}

/*  Modal Close  */
.btn-close {
  width: 30px;
  height: 30px;
  border: none;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  position: absolute;
  cursor: pointer;
  top: -2px;
  right: -6px;
  z-index: 10;
  opacity: unset !important;
}

.btn-close::before,
.btn-close::after {
  content: '×';
  /* Using the multiplication symbol for the cross */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 58px;
  font-weight: bold;
  color: #45418e;
  line-height: 1;
}

/* Modal footer styles */
.modal-footer {
  border-top: 1px solid #666;
  /* Optional: Adjust border style */
  padding-top: 10px;
  /* Space above the footer */
  text-align: right;
  /* Align buttons to the right */
}

/* Footer close button */
.custom-close-btn-footer {
  background-color: #ffffff;
  /* Footer button background color */
  color: #45418e;
  /* Text color for contrast */
  border: none;
  /* No border */
  padding: 8px 15px;
  /* Button padding */
  border-radius: 5px;
  /* Rounded corners */
  font-weight: bold;
  /* Bold text for visibility */
  transition: background-color 0.3s ease;
  /* Smooth hover effect */
}

.custom-close-btn-footer:hover {
  background-color: #ffffff;
  /* Lighter background on hover */
}

/* Adjust bullet points for readability */
.modal-body ul {
  padding-left: 20px;
  /* Indentation for bullets */
  margin: 15px 0;
  /* Space above and below the list */
}

.modal-body ul li {
  margin-bottom: 10px;
  /* Space between list items */
  font-size: 16px;
  /* Bullet text size */
  color: #fff;
  /* Text color matching modal content */
}