
  /* Navbar container */
  .shoppingcart {
    height: 50px;
    width: 100px;
  }
  .main-menu {
    display: flex;
    justify-content: space-between;
  }
  .main-menu-link {
    display: flex; /* Allow boxes to sit next to each other */
    /*background-color: var(--housestyle-purple);*/
    width: 100%; /* Adjust width as needed */
    font-size: 20px;
    font-weight:bold;
    text-decoration: none;
    align-content: center;
    justify-content: center;
    white-space: nowrap;
    padding: 5px;
    color: #000000;
    border: 1px solid var(--royal-blue);;
    border-radius: 4px;
  }
  .main-menu-link:hover {
    display: flex; /* Allow boxes to sit next to each other */
    background-color: var(--housestyle-purple);
    width: 100%; /* Adjust width as needed */
    font-size: 20px;
    font-weight:bold;
    text-decoration: none;
    align-content: center;
    justify-content: center;
    white-space: nowrap;
    padding: 5px;
    background-color: #9013c9;
    color: var(--housstyle-royal-blue);
    border: 1px solid var(--royal-blue);;
  }

  .navbar {
    display: flex;
    height: 150px;
    justify-content: space-between;
    align-items: center;
    background-color: var(--housestyle-green);
    border-bottom: 0px solid #ddd;
    font-family: Arial, sans-serif;
  }
  .title {
    display: inline-block;
    padding-left: 15px;
    width: 320px;

  }
  .wolletje {
    display: inline-block; /* Allow boxes to sit next to each other */
    vertical-align: top; /* Align boxes at the top */
    width: 100px;
    height: 100px;
  }
  .haaknaald {
    display: inline-block; /* Allow boxes to sit next to each other */
    vertical-align: top; /* Align boxes at the top */
    width: 150px;
    height: 150px;
  }

  /* Left */
  .navbar-left .container {
    display: grid;
    width: 570px;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
  }

  .site-title {
    font-size: 60px;
    font-weight: bold;
    margin: 0;
  }
  .site-subtitle {
    font-size: 20px;
  }

  /* Center */
  .navbar-center {
    display: flex;
    justify-content:flex-end;
    padding: 0;
    margin: 0 auto;
  }

  .search {
    display: flex;
    justify-content: flex-end;
    padding: 0;
  }

  .search-form {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
  }

  .search-input {
    border: none;
    padding: 6px 12px;
    font-size: 1rem;
    outline: none;
    width: 200px;
  }

  .search-input::placeholder {
    color: #999;
  }

  .search-button {
    background-color: var(--housestyle-purple);;
    border: none;
    color: white;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 1rem;
  }

  .search-button:hover {
    background-color: #9013c9;
  }

  /* Right */
  .navbar-right {
    display: flex;
    align-items: center;
    padding-right:1%;
  }

  /* User menu */
  .user-menu-container {
    position: relative;
  }

  .user-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 1rem;
    color: #444;
  }

  .user-button:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
  }

  .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #ccc;
    object-fit: cover;
  }

  .user-email {
    display: none;
    font-weight: bolder !important;
    font-size: 30px; /* Adjust the font size as needed */
    color: #878785 !important;
  }

  @media (min-width: 640px) {
    .user-email {
      display: inline;
      font-weight: 600;
      color: #444;
    }
  }

  /* Dropdown menu */
  .dropdown {
    display: none;
    position: absolute;
    right: 0;
    margin-top: 8px;
    width: 400px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .dropdown-link {
    display: block;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
  }

  .dropdown-link:hover {
    background-color: #f3f4f6;
  }
  .overlay-text {
    position: absolute; /* Position the text absolutely within the container */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust position to truly center */
    color: white; /* Text color */
    font-size: 24px; /* Font size */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Optional: add shadow for better readability */
  }
  .circle {
    position: relative;
    width: 60px; /* Adjust the size as needed */
    height: 60px; /* Adjust the size as needed */
    border-radius: 50%; /* Makes the div a circle */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(308, 93%, 26%); /* Default color */
  }
