body {
    margin: 0;
    padding: 0;
}
  /* Style for the main form */
  form {
    /* Set overflow to hidden to remove scrollbars */
    overflow: hidden;
    /* Ensure no padding or margin */
    padding: 0;
    margin: 0;
  }
.table thead th {
    background-color: #007bff; /* Blue color using hex code */
    text-align: center;
    color: white;
    position: sticky;
    top: 0px;
    z-index: 10;
  }
.table td {
    text-align: center;
  }
  .scrollable-div {
    /* Add overflow-y to enable vertical scrollbar */
    overflow-y: auto;
    /* Ensure no padding or margin */
    padding: 0;
    margin: 0;
    /* Add any other styles you want for the scrollable div */
  }
  .no-data-message {
        height: 300px; /* You can adjust the height to fill the table area */
        position: relative;
    }

    .no-data-text {
        font-size: 50px;
        color: rgba(0, 0, 0, 0.1); /* Transparent text color */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-20deg); /* Centered and rotated */
        white-space: nowrap;
        width: 100%;
        text-align: center;
    }