/* Variables and Typography */

:root {
    --font-family: 'Alegreya Sans', sans-serif;
    --font-size: 16px;
    --line-height: 1.5;
    --color-text: #333;
    --color-background: #f9f9f9;
    --color-border: #ddd;
    --color-danger: #dc3545;
  }
  
  /* Global Styles */
  
  body {
    font-family: var(--font-family);
    font-size: var(--font-size);
    line-height: var(--line-height);
    color: var(--color-text);
    background-color: var(--color-background);
    margin: 0;
    padding: 0;
  }
  
  h1 {
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 2.5rem;
  }
  
  h2 {
    font-weight: bold;
    margin-bottom: 0.5rem;
    font-size: 2rem;
  }
  
  p {
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  /* Container Styles */
  
  .container {
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border: 1px solid var(--color-border);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Form Styles */
  
  .form-inline {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .form-control {
    width: 250px;
    margin-right: 1rem;
  }
  
  /* Button Styles */
  
  .btn-danger {
    background-color: var(--color-danger);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
  }
  
  /* Responsive Styles */
  
  @media (max-width: 768px) {
    .container {
      margin: 20px auto;
      padding: 20px;
    }
  
    h1 {
      font-size: 2rem;
    }
  
    h2 {
      font-size: 1.5rem;
    }
  
    .form-control {
      width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      margin: 10px auto;
      padding: 10px;
    }
  
    h1 {
      font-size: 1.5rem;
    }
  
    h2 {
      font-size: 1.2rem;
    }
  }
  
  /* Accessibility Styles */
  
  .text-muted {
    font-size: 0.8rem;
    text-align: center;
  }
  
  .text-center {
    text-align: center;
  }