* {
        box-sizing: border-box;
      }

      body {
        font-family: Arial, sans-serif;
        background: url('img/background.png') no-repeat center center fixed;
        background-size: cover;
        color: #ffffff;
        margin: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
      }

      .navbar,
      .footer {
        width: 100%;
        /* Make sure the navbar/footer take up the entire width */
        padding: 15px;
        background-color: rgba(0, 0, 0, 0.7);
        position: fixed;
        left: 0;
        right: 0;
        z-index: 100;
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
      }

      .navbar {
        top: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 0;
      }

      .footer {
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #ffffff;
        font-size: 14px;
        border-radius: 0;
      }

      .nav-left {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .nav-left .logo {
        height: 40px;
      }

      .nav-title {
        display: flex;
        font-size: 35px;
        font-weight: bold;
        color: #fff;
      }

      .nav-right {
        display: flex;
        align-items: center;
        gap: 10px;
        /* Added to match the left-side spacing */
      }

      .nav-right input {
        padding: 8px;
        border-radius: 5px;
        border: 1px solid #00ccff;
        background: #1b1b3a;
        color: #ffffff;
      }

      .filter-icon-standalone {
        color: #ffffff;
        font-size: 18px;
        cursor: pointer;
      }

      select {
        padding: 8px;
        padding-right: 16px;
        border-radius: 5px;
        background: #1b1b3a;
        color: #ffffff;
        border: 1px solid #00ccff;
      }

      .container {
        min-width: 60%;
        max-width: 80%;
        margin: 80px auto 80px;
        background: rgba(26, 26, 61, 0.9);
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
        flex-grow: 1;
        padding-right: 20px;
        /* Ensure content doesn't overflow the right side */
      }

      .category:not(:first-of-type) {
        margin-top: 50px;
      }

      .category h2 {
        color: #ffff66;
        border-bottom: 2px solid #00ccff;
        padding-bottom: 5px;
      }

      .subcategory h3 {
        color: #ffcc66;
      }

      .recipe-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 20px;
      }

      .recipe-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px;
        border: 2px solid #00ccff;
        border-radius: 8px;
        background: rgba(27, 27, 58, 0.9);
      }

      .recipe-container img {
        width: 310px;
        height: 150px;
      }

      .result-text {
        font-weight: bold;
        color: #ffff66;
        margin-top: 5px;
      }