
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background: #ffff;
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  padding-bottom: 100px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location {
  font-weight: bold;
}

.search-bar {
  display: flex;
}

.search-bar input {
  padding: 5px;
}



.navigation {
  display: flex;
  justify-content: space-around;
  background-color: #2c3e50;
  padding: 10px 0;
}

.nav-item {
  color: white;
  text-decoration: none;
  /* padding: 10px; */
}

.nav-item.active {
  border-bottom: 2px solid #ffffff;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: rgb(214, 214, 214);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;


}

.offers-section {
  background-color: #eb9cba;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px;
}

.offers-section .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.offers-section h2 {
  color: #333;
  font-size: 24px;
  margin: 0;
}


.offers-section .description {
  color: #3e3e3e;
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 20px;
}

.offer-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 10px;
}

.offer-item img {
  width: 60px;
  height: 60px;
  margin-right: 20px;
}

.offer-item .offer-info h3 {
  font-size: 18px;
  color: #333;
}

.offer-item .offer-info p {
  color: #777;
  font-size: 14px;
}

.offer-item .price-info {
  margin-top: 5px;
}

.offer-item .price-info .price {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.offer-item .price-info .discount {
  background-color: #009688;
  color: white;
  padding: 3px 7px;
  border-radius: 5px;
  font-size: 14px;
  margin-left: 10px;
}

.top-bar {
  display: flex !important;
  justify-content: space-between !important;
  padding: 20px 20px 0px 20px;
  color: black;
  align-items: center !important;

}
.top-bar h1{
  margin: 0;
  padding: 0;
}

.location {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between;
}

.search-bar {
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
}

.main-serach {
  padding: 15px 40px !important;
  width: 100%;
  border-radius: 5px;
  border: 2px solid #910c3e;
  position: relative;
  background: #fafafa;
}

.serach-btn {
  border: none;
  color: white;
  padding: 10px;
  margin-left: 5px;
  cursor: pointer;
  border-radius: 5px;
  position: absolute;
  left: 15px;
  box-sizing: border-box;
  background: none;
}
.login-btn,.logout-btn{
  background: #910c3e;
  padding: 5px 20px;
  border: none;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}