/* --- Reset & General --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
  }
  
  body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    padding-top: 70px; /* space for fixed navbar */
  }
  
  /* --- Navbar --- */
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #2b2d42;
    color: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 1000;
  }
  .page-wrapper{
    padding: 20px;       /* adjust as needed */
  max-width: 1000px;   /* optional: keep content readable */
  margin: 0 auto; 
  }
  .super-wrapper{
    padding: 20px;       /* adjust as needed */
  max-width: 1000px;   /* optional: keep content readable */
  margin: 0 auto; 
  background-color: aliceblue;
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar .logo {
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
  }
  
  .navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 15px;
  }
  
  .navbar .nav-links li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .navbar .nav-links li a:hover {
    color: #ef233c;
  }
  
  /* --- Forms & Inputs --- */
  input, select, textarea, button {
    padding: 8px 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    font-size: 1rem;
  }
  
  button {
    background-color: #2b2d42;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  button:hover {
    background-color: #ef233c;
  }
  
  /* --- Competitor & Review Cards --- */
  #competitor {
    background-color: #fff;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 800px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  #reviews > div {
    background-color: #fff;
    padding: 15px;
    margin: 10px auto;
    border-radius: 10px;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    max-width: 800px;
  }
  
  h1, h2 {
    margin-bottom: 10px;
  }
  