@import url('/css/colors.css');

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .menu-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    color: #fbfbfb; /* Change the text color as needed */
  }
  
  .hamburger-menu {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
  }
  
  .bar {
    width: 30px;
    height: 3px;
    background-color: #fbfbfb;/* Change the bar color as needed */
  }
  
  .menu {
    width: calc(100vw - 80px) !important;
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 45px;
    left: -20px;
    background-color: var(--primary); /* Background color for the menu */
    padding: 20px; /* Adjust padding as needed */
    border-radius:  0 0 30px 30px;
    margin: auto;
  }
  
  .side-button1 {
    /* Your existing button styles */
    margin: 10px;
    padding: 10px;

    cursor: pointer;
  }
  
  button.side-button1 {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: none;
    background-color: var(--primary-light);
    box-shadow: 2px 2px 2px var(--primary-dark);;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  
  button.side-button1 img {
    height: 30px;
    margin: 0 20px;
  }
  
  button.side-button1 p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #fbfbfb;
    font-size: 20px;
    margin: 0;
  }
  
  @media(max-width: 660px) {
    .menu-container {
      display: flex !important;
    }
  }