/* styles.css */

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border: 1px solid white;
    border-radius: 4px;
    background-color: transparent;
    transition: background-color 0.2s ease;
  }
  
  nav a:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .user a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid white;
    border-radius: 4px;
  }
  
  header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background-color: #47a9a6;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  nav {
    display: flex;
    gap: 1rem;
  }
  
  
  
  