/* .neo-centered label, input, span{
    margin: 0 auto;
    max-width: 112.0rem;
    padding: 0 2.0rem;
    position: relative;
    width: 100;
    border-radius:0;
} */
/* .input-group-text label, input, span{
    display: inline;
    float: none;
} */

.pagetitle h1 {
    text-transform:capitalize;
}

#drop-zone {
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: border-color 0.3s ease;
}

#drop-zone:hover {
    border-color: #007bff;
}

/* report image modal */

/* Modal styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Transparent black background */
}
h3 {
    margin-bottom: 20px; 
  }

.modal-content {
    margin:30px auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.controls {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 18px;
    color: white;
    cursor: pointer;
}

.thumbnail {
    cursor: pointer;
}

/* print css */

@media print {
    /* Hide the body background and other elements that are not needed */
    body {
      background: none !important;
    }
    h3 {
        margin-bottom: 20px; 
      }
    
    .modal-overlay, .shades, .actions, .footer, .non-printable {
      display: none !important;
    }
  
    /* Show only the modal content */
    .print-modal {
      display: block !important;
      page-break-before: always;
      padding: 10px;
    }
  
    .print-modal .invoice-content {
      width: 100%;
      max-width: 100%;
      padding: 10px;
      font-family: Arial, sans-serif;
    }
  
    /* Remove unnecessary elements within the modal */
    .print-modal .modal-header,
    .print-modal .modal-footer {
      display: none;
    }
    
    
  }
@media print {
        .print-modal {
        page-break-before: always;
        page-break-after: always;
        page-break-inside: avoid;
        }
    }
   /*  .modal-content {
        width: 800px; 
        margin: 0 auto;
        padding: 30px;
        background-color: white;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-family: Arial, sans-serif;
        color: #333;
        line-height: 1.6; 
      }
     */
      h2, p {
        margin-bottom: 15px; 
      }
     h3 {
        margin-bottom: 20px; 
      }
    
      table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
      }
    
      th, td {
        border: 1px solid #ccc;
        text-align: left;
        padding: 10px; 
        font-size: 14px;
      }
    
      th {
        background-color: #f4f4f4;
      }
    
      .total-amount {
        font-size: 18px;
        font-weight: bold;
        margin-top: 20px;
      }
    
      button {
        background-color: #007bff;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 3px;
        cursor: pointer;
        margin-top: 20px;
      }
    
      button:hover {
        background-color: #0056b3;
      }