/* ---- Global Reset & Body ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    font-family: IBM Plex;
  }

  html {
    font-size: 16px;
    scroll-behavior: smooth;
  }

  body {
    background-color: #0f0f0f;
    color: #f0f0f0;
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

  /* ---- Headers ---- */
  h1, h2, h3, h4, h5, h6 {
    color: #00fce6; /* Neon teal accent */
    font-weight: 300;
    margin: 1rem 0 0.5rem;
  }

  /* ---- Links ---- */
  a {
    color: #00fce6;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  a:hover {
    color: #00d8c9;
  }

  /* ---- Navigation Bar ---- */
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
    padding: 0.75rem 1rem;
  }

  .navbar .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00fce6;
  }

  .navbar a {
    margin: 0 1rem;
    color: #f0f0f0;
    transition: color 0.3s ease;
  }

  .navbar a:hover {
    color: #00fce6;
  }

  /* ---- Main Content / Articles ---- */
  .container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
  }

  .article {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease;
  }

  .article:hover {
    box-shadow: 0 0 10px rgba(0, 252, 230, 0.15);
  }

  .article h2 {
    margin-bottom: 1rem;
  }

  .article p {
    margin-bottom: 1rem;
  }

  /* ---- Sidebar (Optional) ---- */
  .sidebar {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 1.5rem;
  }

  .sidebar h3 {
    margin-bottom: 1rem;
  }

  /* ---- Buttons ---- */
  .btn {
    display: inline-block;
    background-color: #00fce6;
    color: #0f0f0f;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
  }

  .btn:hover {
    background-color: #00d8c9;
  }

  /* ---- Footer ---- */
  .footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #1a1a1a;
    border-top: 1px solid #333;
  }

  .footer p {
    color: #757575;
    font-size: 0.9rem;
  }

#users {
    margin: 2em 5em 2em 5em;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 20px;
}
#user {
    text-align: center;
    border: 1px solid white;
}

    .image-container {
        width: 100%; /* or any fixed width like 300px */
        height: 300px; /* or any fixed height like 200px */
        overflow: hidden; /* hides any overflow if the image doesn't fit */
    }

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Makes the image cover the div area */
    }

  nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #333;
            padding: 10px 20px;
            color: #f0f0f0;
        }

        /* Navbar title */
        .site-title {
            color: white;
            font-size: 24px;
            font-weight: bold;
        }

        /* Navbar links */
        .navbar-links {
            list-style-type: none;
            display: flex;
        }

        .navbar-links li {
            margin-left: 20px;
        }

        .navbar-links a {
            text-decoration: none;
            color: white;
            font-size: 18px;
            transition: color 0.3s;
        }

        .navbar-links a:hover {
            color: #f0a500;
        }
#editable {
            width: 300px;
            height: 200px;
            border: 1px solid #ccc;
            padding: 10px;
            overflow: auto; /* Allow scrolling if content overflows */
}

img {
  max-height: 100%;
  height: auto;
}
