.sidebar {
  margin: 0;
  padding: 0;
  width: 60px;
  background-color:  #A52A2A;
  position: fixed;
  height: 100%;
  overflow: auto;
  z-index: 99999;
}

.sidebar a {
  display: block;
  color: white;
  padding: 10px;
  text-decoration: none;
}
 
.sidebar a.active {
  color: black;
}

.sidebar a:hover:not(.active) {
  color: white;
}


.sidebar nav {
  left: 0px;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
}

#content{
  background-color:  #f2dfdf;
  padding:15px;
  width:100%;
  
}

#not-login{
background-color: #f2dfdf;
padding:15px;
margin-top: 30px;
width:100%;
}

 #for_guest{
  padding:15px;
  margin-top: 30px;
  width:100%;
}


.btn-accept{
  background-color: #4CAF50; 
  border: none;
  color: white;
  padding: 7px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
}

.btn-accept-done{
  background-color: grey; 
  border: none;
  color: white;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
}


.logged-in{
  margin-top:1px;
  display: inline-block;
  position: sticky; 
  z-index: 1; 
  top: 0px; 
  background-color: white; 
  width: 100%; 
  
}

.logged-out{
  margin-top:15px;
  margin-right:15px;
}


#cafe-list{
  padding:1px;
  
}

#content ul li {
    background: #f0f5f5;
    border-width: 1px 1px 1px 1px;
    border-color: #75a3a3;
    border-style: solid;
    display: block;
    padding: 5px;
    margin:auto;
    /*box-shadow: 0 6px 12px 0 rgba(0,0,0,0.2), 0 2px 5px 0 rgba(0,0,0,0.19);*/
    margin-bottom: 8px;
    border-radius: 8px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Create two unequal columns that floats next to each other */
.column {
  
  float: left;
  padding-left: 1px;
  padding-right: 1px;

}

.left {
  margin-top: 10px;
  width: 30%;
}

.right {
  width: 70%;
}


@media screen and (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: fixed;
    bottom:0;
  }
  .sidebar a {float: left;}
  div.content {margin-left: 0;}


.sidebar a {
  
  padding: 3px;

}

  .sidebar nav {
    position: relative;
    display: flex;
    justify-content: space-around;
    transform: translateY(0%);

  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
