    /* Resource Directory Styles */
    .links-container {
        width: 90%;
      /*  max-width: 850px; */
        margin: 20px auto;
        padding: 2rem;
        background-color: white;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        box-sizing: border-box;
    }

    .category-head {
        display: block;
        text-align: center;
        font-weight: bold;
        font-size: 1.4rem;
        margin: 2rem 0 1rem 0;
        color: white;
        border-bottom: 2px solid #f5f5dc;
        text-transform: uppercase;
        background-color: green; /* Added line for solid green background */

    }

    .link-item {
        display: block;
        margin-bottom: 10px;
        padding-bottom: 5px;
        border-bottom: 1px solid #f0f0f0;
    }

    .link-item a {
        font-weight: bold;
        color: #e67e22;
        text-decoration: none;
    }

    /* New Form Window Styles */
    .form-window {
        width: 90%;
       /* max-width: 850px; */
      /*  margin: 40px auto; */
        margin: 10px auto;
        padding: 1rem;
        background-color: white;
        border: 3px solid black;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        box-sizing: border-box;
    }

    .label-error { 
        color: red !important; 
        font-weight: bold !important; 
    }

    #errorArea { 
        color: red; 
        font-weight: bold; 
        margin: 15px 0; 
        text-align: center; 
        display: none; 
    }

    .btn 
    {
        padding: 10px 25px;
        font-weight: bold;
        border-radius: 20px;
        border: none; /* Keep the base border empty */
        cursor: pointer;
        background-color: blue;
        color: white;
        /* transition makes the outline appear smoothly */
        transition: outline 0.2s ease, outline-offset 0.2s ease;
    }

    .btn:hover 
    {
        /* Draws the line outside the button's edge */
        outline: 3px solid black; 
        /* Optional: push the line away slightly for a "halo" effect */
        outline-offset: 2px; 
    }
    
    .btn:disabled {
        background-color: darkgray;
        color: gray;
        cursor: not-allowed;
    }

    /* Tooltip / Info Icon Logic */
    .info-wrapper {
        display: inline-block;
        position: relative;
        margin-left: 8px;
        cursor: help;
        font-size: 0.9rem;
        color: #000;
        opacity: 0.6;
    }

    .info-wrapper::before {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 135%; /* Height adjusted to stay clear of cursor */
        left: 50%;
        transform: translateX(-50%);
        background-color: #333;
        color: #fff;
        padding: 6px 10px;
        border-radius: 6px;
        font-size: 0.75rem;
        white-space: nowrap;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s;
        z-index: 10;
    }

    .info-wrapper::after {
        content: "";
        position: absolute;
        bottom: 115%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 5px;
        border-style: solid;
        border-color: #333 transparent transparent transparent;
        visibility: hidden;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .info-wrapper:hover::before, 
    .info-wrapper:hover::after {
        visibility: visible;
        opacity: 1;
    }

    .info-wrapper:hover { opacity: 1; }
    
    #status-msg { text-align: center; color: #677; font-style: italic; }
 
.site-header {
  /* Use the inline style for the specific image as we discussed */
/*  background-image: url('../images/PoultryLinks.png'); */
  background-size: contain;           /* Shows the FULL image */
  background-repeat: no-repeat;      /* Prevents tiling */
  background-position: center;        /* Keeps it centered */
  width: 100%;
  height: 512px;                      /* Matches the actual height of breeds2.jpg */
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-title {
  color: white;
  font-size: 4em;
  text-shadow:
    2px 2px 8px rgba(0, 0, 0, 0.8),
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
  margin: 0;
  text-align: center;
}
