﻿/* High Contrast for better readability */
body
{
    background-color: #f0f0f0; /* Light gray background */
    color: #333; /* Dark gray text */
    font-family: Arial, sans-serif;
    line-height: 1.6; /* Increased line height for readability */
}

.main-heading {
    color: #0056b3; /* Blue heading */
    font-size: 2em;
    margin-bottom: 20px;
}

/* Visible Focus Indicators for keyboard navigation */
.search-input:focus,
.submit-button:focus,
.link-style:focus {
    outline: 3px solid #007bff; /* Bright blue outline */
  /*wb  outline-offset: 2px;  Space between element and outline */
}

/* Accessible Font Sizing */
.search-input,
.submit-button,
.link-style {
    font-size: 1.1em; /* Slightly larger font size */
    padding: 8px 12px;
 /****wb   border-radius: 4px;   ****/
}

/* Semantic HTML and CSS for clarity */
/* (ASP.NET controls render as standard HTML, allowing direct CSS application) */
.link-style {
    text-decoration: underline; /* Explicit underline for links */
    color: #007bff;
}

.submit-button {
    background-color: #28a745; /* Green button */
    color: white;
    border: none;
    cursor: pointer;
}

/* Respecting User Preferences (e.g., reduced motion) */
@media (prefers-reduced-motion: reduce) {
    .submit-button {
   /* wb    transition: none;  Disable animations if user prefers reduced motion */
    }
}