html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}
body{
     background: #f3f3f3;
}
.column-1{
    width: 40%; padding:10px; float:left;
}
.column-2{
    width: 40%; float: right; max-height: 500px; padding: 10px; overflow-y: scroll;float:right;
}
.wrapper{
    width:80%;
    margin:auto;
    display: flex;
    align-items: center;
    font-family: sans-serif;
    line-height: 1.5;
    height:auto;
    background: #f3f3f3;
    flex-direction: column;
    justify-content:center;
    height:auto;
    padding-bottom:20px;
    padding-top:20px;
}
.results{
    width: 90%; 
    border: black 2px solid; 
    padding:10px;
    justify-content:center;
    height:auto;
}
.fa-solid,.fa-sign-out{
  float: right;
  padding: 10px;
}
 .fa-solid:hover, .fa-sign-out:hover{
     color:darkgoldenrod;
 }
nav {
  background-color: ivory;
  width: 80%;
  overflow: hidden;
  position: sticky;
  opacity: 95%;
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
}

nav a {
  font-family: "Chalkboard SE", serif;
  color: #e39e1f;
  text-align: center;
  padding: 14px 20px;
  text-decoration: none;
}
.dropdown-menu {
  display: flex;
  flex-direction: row;
  gap: 1em;
}

#menu-toggle {
  display: none;
}
.nav-icons{
  display: flex;
  gap: 2em; 
  margin-left: auto;
  align-items: center;
}
.menu-icon {
  display: none;
  font-size: 36px;
  cursor: pointer;
  color: black;
  user-select: none;
}
nav a:hover {
  background-color:darkgoldenrod;
  color: pink;
}
nav a:active {
  background-color: hotpink;
  color: white;
}
nav a:visited{
  color: black;
}
a{
    text-decoration:none;
}
h1{
  color: pink;
}
h3 {
    color:hotpink;
}
.product_title{
    color:hotpink;
}

label,#admin_label{
    display: block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
    text-align: left;
    color: #555;
    font-weight: bold;
}
textarea{
 width: 100%;
  height: 150px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  resize: none;
}
input:not([type="radio"]){
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 5px;
}
select{
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.button-order{
    width: 2px;
}
.search_button{
    width:100%;
}
button {
     padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    border: none;
    color: white;
    cursor: pointer;
    background-color: pink;
    font-size: 16px;
    width: 30em;
    box-sizing: border-box;
}
.admin_button{
    width:30%;
    color:black;
}
button:hover{
     background-color: hotpink;
}
.order_button{
    width: 80%;
}
::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 8px;
  padding-right:10px;
}
::-webkit-scrollbar-thumb {
  height: 1px;    
  border-radius: 8px;
  background-color: pink;
}
.rounded {
  border: 5px solid lightgrey ;
  border-radius: 5px;
}
.sections{
    width:50%;
    height:600px;
    padding:10px;
    overflow-y:scroll;
    margin-left: auto;
    margin-right:auto;
}
.shopping_button,.delete_button,.add_button{
    background: white;
    width: 20%;
    cursor: pointer;
    color:hotpink;
    border:black solid 2px;
    display: flex;               
    align-items: center;       
    justify-content: center;    
}
.shopping_button:hover,.delete_button:hover,.add_button:hover {
    background-color: hotpink;
}
.shopping_button i,.delete_button i,.add_button i {
 
    color: hotpink;
}
.shopping_button:hover i,.delete_button:hover i,.add_button:hover i{
    color: white
}

.radio-group {
    display: flex;
    width: 80%;
}
.radio-group label {
    display: flex;
    align-items: center;
    font-size: 16px;
    width: 20%; 
}
.radio-group input[type="radio"] {
    margin-right:20px;
    vertical-align: middle
}
.main {
    background-color: #ffff;
    border-radius: 15px;
    box-shadow: 0 0 20px darkgoldenrod;
    padding: 10px 20px;
    transition: transform 0.2s;
    width: 600px;
    text-align: center;
}
@media only screen and (max-width: 600px) {

h1{
    font-size:25px;
}
.sections {
width:90%;
height:400px;
}
.wrapper{
    width:100%;
    height:auto;
    font-family: sans-serif;
    line-height: 1.5;
}
body{
     overflow-x: hidden;
}
.shopping_button,.delete_button,.add_button{
    background: white;
    width: 40%; 
}
.main {
    background-color: #ffff;
    border-radius: 15px;
    box-shadow: 0 0 20px darkgoldenrod;
    padding: 10px 20px;
    transition: transform 0.2s;
    width: 80%;
    text-align: center;
    margin-right:auto;
    margin-left:auto;
}
.results{
    width: 90%; 
    height:auto;
    border:none;
}
nav{
        width:100%;
    }
nav a,nav i{
            font-size:15px;
    }
.menu-icon {
    display: block;
  }

.dropdown-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: ivory;
  }

#menu-toggle:checked + .menu-icon + .dropdown-menu {
    display: flex;
  }

.dropdown-menu a {
    width: 100%;
    text-align: left;
  }

nav i {
    margin-left: 10px;
    font-size: 20px;
    padding: 10px;
  }

button {
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
    border: none;
    color: white;
    cursor: pointer;
    background-color: pink;
    font-size: 16px;
    width:90%;
    }
.radio-group {
    flex-direction:column;
    }
.wrap{
    width:100%;
}
.column-1{
    width: 90%; padding: 10px; float:none ;
}
.column-2{
    width: 90%; max-height: 400px; padding: 10px; overflow-y: scroll; float:none;   border-top: 5px solid lightgrey;
}
}