/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
  header {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    text-align: left;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1001;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .hamburger {
    font-size: 24px;
    cursor: pointer;
    display: inline-block;
  }
  
  .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background: #333;
    border: 1px solid #444;
  }
  
  .menu li {
    padding: 10px 20px;
  }
  
  .menu a {
    color: #fff;
    text-decoration: none;
  }
  
  .menu-toggle:checked ~ .menu {
    display: block;
  }
  
  main {
    padding: 20px;
  }
  
  footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
  }

  /* Toast notifications */
  .toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    z-index: 1000;
    display: none;
    animation: slide-up 0.3s ease;
  }

  .toast-info {
    background-color: #2196F3;
  }

  .toast-success {
    background-color: #4CAF50;
  }

  .toast-warning {
    background-color: #FF9800;
  }

  .toast-error {
    background-color: #F44336;
  }

  @keyframes slide-up {
    from {
      transform: translateX(-50%) translateY(100%);
    }
    to {
      transform: translateX(-50%) translateY(0);
    }
  }
  