/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
  }
  
  header {
    background-color: #2ecc71;
    color: #fff;
    text-align: center;
    padding: 15px;
  }
  
  main {
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  label {
    display: block;
    margin-bottom: 5px;
    color: #333;
  }
  
  input[type="text"],
  input[type="date"],
  button {
    padding: 8px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  input[type="date"] {
    width: 180px;
  }
  
  button {
    background-color: #2ecc71;
    color: #fff;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #27ae60;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
  }
  
  th, td {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
  }
  
  th {
    background-color: #2ecc71;
    color: #fff;
  }
  
  tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  
  /* New CSS for links */
  a {
    color: blue; /* Set the default link color to blue */
    text-decoration: none; /* Remove any underline or other text decorations */
  }
  
  a:hover {
    /* Optional: You can add hover styles if you want to change the color on hover */
    /* For example, you can set a lighter shade of blue on hover */
    color: #0077cc;
  }
  
  a:visited {
    color: blue; /* Set the visited link color to blue as well */
  }
  
  /* New CSS for red background color */
  td.location-red {
    background-color: red;
  }
  