@charset "UTF-8";

body, html {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #333;
	display: flex;
    flex-direction: column;
}

.center{
	text-align: center;

}

.center img {
    display: block;
    margin-left: auto;
    margin-right: auto;
        }

header {
    background: #333;
    color: #fff;
    padding: 0rem 0;
    text-align: center;
    margin: 0 auto;
    line-height: 1.2;
    width: 100%;
	flex-shrink: 0;
}

.header-table {
    margin: 0 auto;
    width: 100%; /* Adjust the width as necessary */
    border-collapse: collapse;
    text-align: center;
}

.header-table td {
    vertical-align: middle;
    padding: 0;
}

header h1 {
    font-size: 1.5rem;
    margin: 0;
}

nav {
    margin: 0;
    padding: 0;
}

nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
	margin-right: 15px; /* Add space between links */
}

nav a:last-child {
    margin-right: 0; /* Remove margin from the last link */
}

main {
	flex: 1;
    overflow-y: auto;
    max-width: 1200px;
    margin: 0rem .5rem;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 0px;
    background-color: #FFF;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

h1{
	text-align: center;
}

p {
    text-indent: 20px; 
}

dt {
	font-weight: bold;
}

video {
    max-width: 100%;
    width: auto;
    height: 400px;
    margin: 0 auto;
}

.left-align {
    text-align: left;
}

.float-right {
    float: right;
    margin-left: 10px;
    margin-bottom: 10px;
}

.float-left {
    float: left;
    margin-left: 10px;
    margin-bottom: 10px;
}

.red{
	color: #fff;
}

.red:hover {
    color: red;
}

#featured-container a {
    font-size: 18px; /* Adjust the size as needed for the featured link */
    font-weight: bold; /* Optional: Make the featured link bold */
}

#all-articles-container a {
    font-size: 15px; /* Adjust the size as needed for the article links */
    font-weight: bold; /* Optional: Make the article links normal weight */
}

#news-content {
    border-left: 5px solid #ccc; /* Light gray for the left border */
    border-right: 5px solid #ccc; /* Light gray for the right border */
    padding-left: 5px; /* Space between the border and content */
    padding-right: 5px; /* Space between the border and content */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for 3D effect */
}

#news-content article {
    background: #fff; /* Ensure the background is white */
    padding: 20px; /* Space inside the article */
    margin: 0 auto; /* Center the article within the section */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 3D effect for the article */
}

ul li {
    margin-bottom: 10px; /* Add space between list items */
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    border: 0px solid #ddd;
    vertical-align: top;
}

th {
    background-color: #f4f4f4;
    text-align: center;
    font-size: 1.25rem;
}

#featured-news {
    width: 60%;
}

#all-news {
    width: 40%;
}

label {
    display: block;
    margin: 10px 0 5px;
}

select {
    margin-bottom: 20px;
    padding: 5px;
    width: 100%;
    max-width: 300px;
}

#resourceList > div {
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #ccc;
}

#resourceList h3 {
    margin: 0 0 10px;
}

#resourceList p {
    margin: 5px 0;
}

.limited-width {
    max-width: 500px; /* Set your desired width */
    margin: 0 auto; /* Center the section */
    padding: 20px; /* Optional: Add some padding */
}

/* Base styles for all devices */
.visible-on-mobile,
.visible-on-desktop {
  display: none;
}

/* Existing styles */

/* Styles for mobile devices 
@media (max-width: 768px) {
  .visible-on-mobile {
    display: block; /* Make it visible on mobile 
  }
  
  table, tr, td {
      display: block;
      width: 100%;
  }

  td {
      width: 100%; /* Each cell takes the full width of the table 
      box-sizing: border-box;
      border: 0px solid #000; /* Optional: Add border for better visibility 
      padding: 10px; /* Optional: Add padding 
  }
}

/* Styles for desktop devices */
@media (min-width: 769px) {
  .visible-on-desktop {
    display: block; /* Make it visible on desktop */
  }
  
  table {
      width: 100%;
      border-collapse: collapse;
  }

  td {
      border: 0px solid #000; /* Optional: Add border for better visibility */
      padding: 10px; /* Optional: Add padding */
  }

}


