/* General Reset */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    color: #333;
  }
  
  header {
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
  }
  
  main {
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
  }
  
  section.search-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  input[type="text"], input[type="date"], button {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
  }
  
  button {
    cursor: pointer;
    border: 1px solid #333;
    background: transparent;
  }
  
  button:hover {
    background-color: #e0e0e0;
  }
  
  section.results {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  #result {
    display: none;
    text-align: center;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .no-events {
    display: none;
    text-align: center;
    font-size: 1rem;
    padding: 1rem;
    border: 1px dashed #aaa;
    border-radius: 4px;
  }
  
  footer {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
  }
  
  img {
    max-width: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
  }
  
  h2 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
  }
  
  p {
    margin: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.5;
  }
  