
      #more { display: none; }
      body span {
              color: 	white;
  font-size: 110%;
    background-color: blue; 
}
      body p {
text-indent: 50px;
    color: 	white;
  font-size: 110%;
    background-color: blue; 
}
    h,h1,h2,h3,h4 {
  text-align: center;
    color: white;
  text-shadow: 3px ;
  font-size: 150%;
    background-color: blue;
}
        /* Container for the buttons */
.nav-table {
  border-collapse: separate;
  border-spacing: 5px; /* Adds space between buttons */
  margin-bottom: 10px;
}

/* Styling the buttons */
.nav-btn {
  font-size: 10pt;
  font-weight: bold;
  color: white;
  background-color: blue;
  border: 2px solid #1060d2;
  padding: 4px 8px;
  cursor: pointer;
  transition: background-color 0.3s ease; /* Smooth hover effect */
  text-transform: uppercase;
}

/* Hover effect to make it interactive */
.nav-btn:hover {
  background-color: #1060d2;
  border-color: white;
}
.fm-heading {
  text-align: center;
  font-size: 22px;
  margin: 15px 0;
  font-weight: bold;
}

.fm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
  gap: 12px;
  padding: 10px;
}

.fm-grid a {
  text-align: center;
  text-decoration: none;
  color: #000;
  font-size: 13px;
}

.fm-grid img {
  width: 120;
  max-width: 120px;
  height: 120;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.fm-grid img:hover {
  transform: scale(1.05);
}

.fm-grid span {
  display: block;
  margin-top: 6px;
}
      /* Footer Container Styling */
.footer-container {
    background-color: blue;
    padding: 20px 0;
    text-align: center;
}

/* Base style for footer buttons/links */
.footer-btn {
    background-color: blue;
    color: white;
    font-weight: bold;
    border: 2px solid #1060d2;
    padding: 5px 10px;
    cursor: pointer;
    margin: 5px;
    transition: background 0.3s;
}

/* Hover effect */
.footer-btn:hover {
    background-color: #1060d2;
}

/* Specific sizing for Terms, About, Help */
.size-sm { font-size: 9pt; }

/* Specific sizing for Privacy, Contact, Report */
.size-md { font-size: 10pt; }

/* Copyright text styling */
.copy-right-text {
    font-size: 20pt;
    color: white;
    background-color: blue;
    border: none;
    padding: 18px;
    display: inline-block;
}
#more { display: none; }
    