/* Loading logic */
@keyframes spinner {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .loading-spinner {
    display: none;
    width: 50px;
    height: 50px;
    border: 10px solid #f3f3f3; /* Light grey */
    border-top: 10px solid #383636; /* Black */
    border-radius: 50%;
    animation: spinner 1.5s linear infinite;
  }

  .download-btn-loading .loading-spinner {
    display: inline-block;
  }

  .no-data {
    margin-top: 40px;
  }
  .download-btn {
    width: 200px;
    height: 50px;
    margin-top: 40px;
    background-color: #007bff; /* Blue background */
    color: #fff;              /* White text */
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: sans-serif;
    cursor: pointer;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  }

  .download-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: scale(1.05);    /* Slightly enlarge */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  #includeTotal {
    margin-right: 5px;
  }