/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
}

/* Layout */
header {
    background-color: #004085;
    color: #fff;
    padding: 1rem;
    text-align: center;
    border-bottom: 4px solid #007bff;
}

header h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
header a {
color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
}


.path {
    background: #ffffff;
    padding-top: 1px;
    text-align: center;
    max-width: 800px;
    margin-top: 4px;
    margin-bottom: 2px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.path a {
    color: #007bff;
    text-decoration: none;
}
.path a:hover {
    text-decoration: underline;
}


/* Main Content */
main {
    padding: 2rem;
    max-width: 800px;
    margin: 1rem auto;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

main h1, main h2, main h3 {
    color: #004085;
    margin-bottom: 1rem;
}

main p {
    margin-bottom: 1rem;
}

main a {
    color: #007bff;
    text-decoration: none;
}

main a:hover {
    text-decoration: underline;
}


/* Responsive Design */
@media (max-width: 768px) {
    body {
        font-size: 90%;
    }

    header h1 {
        font-size: 1.5rem;
    }

    main {
        padding: 1rem;
    }
}




/* Tables */
table {
    width: 100%;
    margin-bottom: 20px;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

table th {
    background-color: #007bff;
    color: white;
    font-weight: bold;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

table tr:hover {
    background-color: #ddd;
}



ul {
  list-style-type: none; /* Remove bullets */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margins */
}



.button_blue, .button_green {
    display: inline-block;  /* Ensure they appear side by side */
    margin-right: 10px;      /* Space between buttons */
    margin-bottom: 20px;
}

.button_blue {
  background-color: #007bff; /* Blue color */
  color: white; /* White text */
  padding: 5px 20px; /* Padding for better button size */
  border-radius: 5px; /* Rounded corners */
  text-decoration: none; /* Remove underline */
  font-weight: bold;
  text-align: center; /* Center the text inside the button */
}

.button_blue:hover {
  background-color: #0056b3; /* Darker blue on hover */
}

.button_green {
  background-color: green;  /* Green background */
  color: white; /* White text */
  padding: 5px 20px; /* Padding for better button size */
  border-radius: 5px; /* Rounded corners */
  text-decoration: none; /* Remove underline */
  font-weight: bold;
  text-align: center; /* Center the text inside the button */
}

.button_green:hover {
  background-color: darkgreen;  /* Darker green when hovered */
}
