/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Header Styles */
.header {
  background-color: white;

}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 150px;
  height: auto;
}
.account{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.account a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding-right: 12px;
}
.account ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.account ul li {
  list-style-type: none;
}
.create-account{
  display: flex;
  align-items: center;
  padding: 10px;
}
.create-account .register-icon{
  width: 30px;
  height: 30px;
  padding-right: 10px;
}
.create-account.register-text{
  margin-right: 5px;
  text-decoration: none;
  color: #1e5cb7;
  font-weight: bold;
}

.header-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  background: #de1616;
}
.header-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.header-text p {
  margin: 5px 0;
  color: white;
  padding-left: 20px;
}

.search-bar {
  position: relative;
}

.search-bar input[type="text"] {
  padding: 10px;
  border: 1px solid #ccc;
  width: 300px; /* Adjust the width as needed */
  border-radius: 2px; /* Add border-radius for rounded corners */
  padding-right: 40px; /* Add space for the search icon */
}

.search-bar button {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.search-bar button img {
  width: 80%;
  height: auto;
}
.shopping-cart{
  display: flex;
  align-items: center;
  background: orange;
  padding: 10px;
}
.shopping-cart a{
text-decoration: none;
}
.shopping-cart-text {
  margin-right: 5px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.shopping-cart .shopping-cart-icon {
  width: 25px;
  height: 25px;
  padding-right: 50px;
}
.header-bottom {
  display: flex;
  justify-content: left;
  background-color: white;
  padding: 10px 0;
}

.dropdown {
  position: relative;
  margin: 0 10px;
}

.dropdown .dropbtn {
  background-color: white;
  color: #333;
  border: none;
  font-weight: bold;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.dropdown-content a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown:hover .dropdown-content {
  display: block;
}