.main-logo{
  padding: 0 16px;
}

.h-100 {
    height: 100%;
}

.card-table {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    
    overflow: hidden;
  }

.card-body {
    flex-grow: 1;
    overflow: auto; /* Enables scroll if content overflows */
}


/* 🔹 Fix Table Header */
.table-responsive {
    flex-grow: 1;
    overflow-y: auto;
    position: relative;
    max-height: calc(88vh - 100px); /* Adjusts dynamically */
}

.table thead {
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

.text-end.cust {
  display: flex;
}

.invoice-one .inv-content span.line{
  height: 2px;
}

.table-responsive.table-cust {
  max-height: calc(60vh - 100px);
}

/* 🔹 Responsive Adjustments */
@media (max-width: 1280px) {
    .table-responsive {
        max-height: calc(92vh - 140px); /* More space for smaller screens */
    }
}