@charset "UTF-8";
/* Your custom styles */

 /* Container for the scrolling text */
 .marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background-color: #f2f2f2;
    border: 1px solid #ccc;
  }

  /* Style and animation for the text */
  .marquee-text {
    display: inline-block;
    padding: 10px;
    font-size: 20px;
    color: #ffffff;
    animation: scrollText 20s linear infinite;
  }

  /* Keyframes for the scrolling animation */
  @keyframes scrollText {
    from {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
  }

 table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

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

th{
  background-color: goldenrod;
  color: #ffffff;
}

tr:nth-child(odd) {
  background-color: #edd6c2;
}