  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0px;
    background-color: #212121;
    color: #333;
    line-height: 1.6;
}

  .title {
    display: block;
    max-width: 100% !important;
    background-color: black;
    border-radius: 0px !important;
    padding: 3;
    margin: 0;
}

/* Keep the image aligned to the left */
.title a {
    display: flex;
    align-items: left;
}

  .title-curve {
    width: 100vw; /* Full page width */
    height: 200px; /* Increase height for a deeper curve */
    background: black; /* Same as .title */

    /* Override global div styles */
    margin: 0;
    max-width: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;

    /* Ensure the curve spans the entire width */
	     /* Apply a true smooth S-curve */
            clip-path: path("M0,0 H2000 V300 C700,10 25,90 0,100 Z");
		    z-index: 2;
}

  .logo-big {
    width: 200px !important;
    height: auto !important; /* Maintains aspect ratio */
    margin: 2px;
     display: block;
}


  h1, h2, h3 {
    text-align: center;
    margin: 1rem 0;
    color: white;
  }

  div {
    margin: 1rem auto;
    max-width: 1200px;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }



  #loading {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    padding: 2rem;
    color: #666;
  }

  #content {
    display: none; 
    background-color: #212121;
    padding: 5px; 
    overflow-x: auto; /* Enables horizontal scrolling */
    padding-bottom: 1rem; /* Adds space to prevent scrollbar from overlapping */
  }
  

  .dataTables_wrapper {
	  margin: 0 !important;
	  padding: 0 !important;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    padding-bottom: 1rem; /* Adds space to prevent scrollbar from overlapping */
	    margin:0px; padding:0px;
  }

  th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }

  th {
    background-color: #f4f4f4;
  }

  a {
    color: #007bff;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }
