.abstract-shape {
    position: relative;
    text-align: center; /* Center the images horizontally */
    margin-bottom: 20px; /* Provide space between images and modal content */
  }
  
  .abstract-shape img {
    max-width: 250px; /* Adjust the size as necessary */
    max-height: 200px; /* Adjust the size as necessary */
    margin: 0 auto; /* Center the images */
    display: block; /* Images are block level to allow for margins */
  }
  .custom-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Dimmed background */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
  }
  
  .custom-modal-content {
    background-color: #fff;
    padding: 30px;
    border: 2px solid black;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    max-width: 600px; /* Maximum width */
    width: 90%;
    text-align: center;
  }
  
  .custom-modal-header {
    font-size: 24px;
    color: #304FFE; /* Example color - deep blue */
    margin-bottom: 30px;
  }
  
  .custom-modal-body {
    font-size: 15px;
    line-height: 1.6;
    color: #111;
  }
  
  .custom-modal-footer {
    margin-top: 30px;
  }
  
  .custom-modal .btn {
    border: none;
    padding: 20px 20px;
    border-radius: 20px;
    color: #fff;
    margin: 0 10px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .custom-modal .btn-success {
    background-color: #4CAF50; /* Green */
  }
  
  .custom-modal .btn-success:hover {
    background-color: #45a049;
  }
  
  .custom-modal .btn-danger {
    background-color: #F44336; /* Red */
  }
  
  .custom-modal .btn-danger:hover {
    background-color: #d73833;
  }
  
  /* Icon styles for success and error */
  .icon-success {
    color: #4CAF50; /* Green */
  }
  
  .icon-error {
    color: #F44336; /* Red */
  }
  
  /* Close button style */
  .close-btn {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: #000;
  }
  
  .close-btn:hover {
    color: #333;
  }
  
  /* Animation for the modal to fade in */
  @keyframes fadeIn {
    from {
      transform: scale(0.7);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  /* Responsive styles */
  @media (max-width: 767px) {
    .custom-modal-content {
      width: 90%; /* Adapt width to smaller screens */
      padding: 10px; /* Less padding on smaller screens */
    }
  }