body {
  background-color: #2a3d3f; /* Dark blue-green background for the whole page */
  color: white;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
    
  table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        font-size: 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: #111;
        color: #fff;
    }

    table thead {
        background-color: #222;
    }

    table thead th {
        padding: 12px 15px;
        border: 1px solid #333;
        text-align: left;
        font-weight: bold;
        color: #0f0; /* neon green text for headings */
    }

    table tbody td {
        padding: 12px 15px;
        border: 1px solid #333;
    }

    table tbody tr:nth-child(even) {
        background-color: #1a1a1a;
    }

    table tbody tr:hover {
        background-color: #2a2a2a;
    }

.post-icons {
  display: none;
}

header {
  background-color: #1f2d2d; /* Darker blue-green for header */
  padding: 7px;
  text-align: center;
  height: 60px; /* Fixed height for the header */
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Border color matches the background */
}


header h2 {
  color: #00bfae; /* Light blue-green color for the header text */
  font-size:30px;
  font-weight: bold;
  text-transform: uppercase;
}

main {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.content-box {
  background-color: #2f4f4f; /* Blue-green shade for content box */
  padding: 20px;
  max-width: 800px; /* Increased width */
  width: 100%;
  border-radius: 6px; /* Adjust the value to control the roundness */
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2); /* Light border for definition */
}

.section-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  color: #00bfae; /* Light blue-green color for section title */
  margin-bottom: 20px;
}

.stream-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.stream-box {
  background-color: #1f2d2d; /* Darker blue-green for stream boxes */
  padding: 5px 10px; /* Reduced padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px; /* Reduced margin */
  text-align: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border-radius: 6px; /* Adjust the value to control the roundness */
  width: 100%; /* Matching content box width */
  max-width: 750px; /* Matching content box width */
  text-decoration: none; /* Remove underline */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Light border for definition */
  height: 40px; /* Slightly reduced height */
}

.stream-box a {
  text-decoration: none; /* Remove underline */
  color: inherit; /* Inherit the color from parent */
}

.stream-box:hover {
  transform: translateY(-5px);
}

.stream-left {
  font-size: 16px;
  font-weight: 600;
  color: #00bfae; /* Light blue-green for the left side text */
}

.stream-right {
  color: #90ee90; /* Light green for 'Online' status and dot */
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.stream-right svg {
  margin-left: 5px; /* Space between the text and the icon */
  fill: none; /* No fill for the checkmark icon */
  stroke: #90ee90; /* Light green color for the checkmark icon */
}
    
       /* Styling for h1 and h2 tags */
    h1, h2 {
      color: #00b3b3; /* Blue-green color */
    }
    h3 {
      color: #008080; /* Slightly darker blue-green */
    }

    /* Custom color styling for specific words in paragraph */
    .highlight {
      color: #00b3b3; /* Blue-green color for highlighted words */
    }
    .highlight-strong {
      color: #008080; /* Slightly darker blue-green for stronger emphasis */
    }
footer {
  background-color: #1f2d2d; /* Darker blue-green footer background */
  padding: 20px;
  text-align: center;
  color: white;
}
    
    .content-box .section-title {
    font-size: 18px; /* Adjust this value as needed */
    line-height: 1.2; /* Adjusts line spacing if necessary */
    text-align: center; /* Centers the text */
    color:  #008080; /* Adjust text color */
}

@media only screen and (max-width: 768px) {
  header {
    height: auto;
    padding: 10px;
  }

  header h2 {
    font-size: 20px;
  }

  main {
    margin-top: 30px;
    padding: 10px;
    flex-direction: column;
  }

  .content-box {
    padding: 15px;
    max-width: 100%;
    border-radius: 4px;
  }

  .section-title {
    font-size: 20px;
  }

  table {
    font-size: 0.85rem;
    overflow-x: auto;
    display: block;
  }

  table thead th,
  table tbody td {
    padding: 10px;
  }

  .stream-grid {
    flex-direction: column;
    align-items: center;
  }

  .stream-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    height: auto;
    max-width: 100%;
    text-align: left;
  }

  .stream-left {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .stream-right {
    font-size: 13px;
  }

  footer {
    font-size: 14px;
    padding: 15px;
  }

  h1, h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 16px;
  }
}
