:root {
    --brand-color: #4CAF50;
    --text-color: #333;
    --background-light: #f9f9f9;
    --background-dark: #222;
    --link-hover: #3a923c;
    --card-bg: ##333;
    --border-radius: 10px;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .table-of-contents {
    background-color: #333;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
  }
  
  .table-of-contents a {
    display: block;
    margin-bottom: 10px;
    color: #f5f5f5;
    text-decoration: none;
    font-weight: bold;
    position: relative;
  }
  
  .table-of-contents a:hover {
    color: #ff4d4d;
  }
  
  .table-of-contents a:hover::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #ff4d4d;
    position: absolute;
    bottom: -2px;
    left: 0;
  }
  
  .gids-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }
  
  .toc {
    margin-bottom: 30px;
  }
  
  .toc ul {
    list-style: none;
    padding: 0;
  }
  
  .toc ul li {
    margin: 10px 0;
  }
  
  .toc ul li a {
    text-decoration: none;
    color: var(--brand-color);
    font-weight: bold;
  }
  
  .toc ul li a:hover {
    color: var(--link-hover);
  }
  
  .content-section {
    margin-bottom: 40px;
  }
  
  .content-section h2 {
    font-size: 1.8rem;
    color: var(--brand-color);
    border-bottom: 2px solid var(--brand-color);
    padding-bottom: 5px;
    margin-bottom: 15px;
  }
  
  .content-section p,
  .content-section ul,
  .content-section ol {
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 10px;
  }

  /* Table of Contents */
  .table-of-contents {
    background-color: #fff;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 900px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ff0000;
  }

  .table-of-contents h2 {
    color: #ff0000;
    margin-bottom: 10px;
  }

  .table-of-contents a {
    display: block;
    padding: 10px;
    color: #ff0000;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #ff0000;
    border-radius: 5px;
    margin: 5px 0;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .table-of-contents a:hover {
    background-color: #ff0000;
    color: #333;
  }

  /* Sections */
  section {
    padding: 20px;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
  }

  section h2 {
    color: #ff0000;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 5px;
    margin-bottom: 15px;
  }

  section p, section ul {
    margin: 0;
    padding: 0;
  }

  section ul {
    list-style-type: none;
    padding-left: 0;
  }

  section ul li {
    margin: 10px 0;
    padding: 10px;
    background-color: #f4f4f4;
    border-radius: 5px;
    border-left: 5px solid #ff0000;
  }

  section ul li strong {
    color: #000000;
  }

  /* img container rooster */
.image-container {
    text-align: center;
    margin-top: 20px;
  }
  
  .image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
  }

  .calendar-container {
    position: relative;
    overflow: hidden;
    padding-top: 75%; /* Adjusts the aspect ratio (4:3) */
  }
  
  .calendar-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }

  
  /* Footer */
  footer {
    text-align: center;
    padding: 10px;
    background-color: #ff0000;
    color: white;
    margin-top: 20px;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background: var(--background-dark);
    color: white;
  }


