.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color:#4285f4;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  z-index: 1000;
}

.icon-group {
  display: flex;
  align-items: center;
  gap: 5px;
  
}

.icon-group-right {
  display: flex;
  align-items: center;
  padding-right: 10px;
  color: #FFF;
  font-weight: bold;
}

.menu-icon {
  font-size: 25px;
  color: #FFF;
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  padding: 0;
  margin: 0;
  position: relative;
  top: -1px;
  font-weight: bold;
}

.title-link {
  text-decoration: none;
  color: #FFF;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
}

        body {
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start; /* Move everything higher */
            padding-top: 75px; /* Adjust vertical positioning */
            height: 100vh;
            margin: 0;
            background-color: #FFF;
        }

.button {
    width: 200px; /* Set a fixed width for uniform sizing */
    height: 40px; /* Ensure consistent height */
    margin: 0; /* Remove auto margin to keep everything aligned */
}

  
.category {
            margin: -20px 20px 20px 20px;
            padding: 0px;
            padding-top:10px;
            max-width: 1024px;
            background-color: #FFF;
            font-size: 18px;
            line-height: 1.8;
}
        
 /* Cookie */
.cookie {
color:#000;
background-color:#f5f5f5;
font-weight:normal;
font-size:16px;
border: 0px solid green;
border-radius: 5px;
margin-top:5px;
margin-bottom:15px;
padding-left:10px;
padding-top:5px;
padding-right:10px;
padding-bottom:5px;
line-height:1.4;
}


 /* Style the footer */
    footer {
      position: fixed;
      bottom: 0px;
      width: 100%;
      background-color: #FFFFFF;
      text-align: center;
      padding: 15px;
    }
    footer a {
      text-decoration: none;
      color: black;
      margin: 0 5px;
    }
    footer a:hover {
      color: #0073e6; /* Change link color on hover */
    }