body {
background-color: #def0f1;
  margin: 0;
  padding: 0;
}
#header {
  background-color: #8d8d8d;
  width: 100%;
  height: 230px;
  opacity: 0.6;
}
#homebg {
background-image: url("young-woman-pharmacist-pharmacy\ 2.png");
  width: 100%;
  height: 700px;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

#profile-section {
  margin: auto; 
  padding: 20px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  position: relative;
  left: 50px;
}

#frame-6 {
  margin-top: 20px;
  margin-left: 30px;
  width: 8%; 
  height: auto; 
  ;
}

h2 {
  font-family: "Lexend", sans-serif;
  font-size: 30px;
  color: #333;
  margin-bottom: 30px; 
  
}

.form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.form-group {
  flex: 1 1 45%;
  margin-bottom: 15px;
}

label {
  display: block;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  margin-bottom: 12px;
  color: #747373;
}

input {
  width: 70%;
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid #4a7c8a;
  border-radius: 8px;
  background-color: #f3f3f3;
  font-family: "Lexend", sans-serif;
  font-size: 14px;
  color: #888;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.212), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-history {
  width: 17.5%;
  position: relative;
  bottom: 3em;
}
.btn-update {
  margin-top: 20px; 
  width: 20%;
  text-align: center;
  position: relative;
  left: 29em;
}
.btn {
  padding: 15px 28px;
  border: none;
  border-radius: 8px;
  background-color: #4a7c8a;
  cursor: pointer;
  font-family: "Lexend", sans-serif;
  font-size: 14px;
  color: #ffff;
  font-weight: bolder;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.btn:hover {
  background-color: #a8dadc;
}

.btn-history {
  background-color: #4a7c8a;
}

.btn-history:hover {
  background-color: #90cfcf;
}

.btn-update {
  background-color: #4a7c8a;
}

.btn-update:hover {
  background-color: #90cfcf;
}

.navbar {
  background-color: #8d8d8d; /* White background */
  opacity: 0.6;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
  height: 150px;
  overflow: hidden;
}
.navbar img {
  width: 100%;
  height: 100%;
}
.navbar-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px; /* Set a maximum width for the navbar */
  margin: auto; /* Center the navbar */
  position: relative;
  top: 50%;
  transform: translate(0%,-60%);
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333; /* Dark gray or black color for brand */
  font-weight: 500; /* Semi-bold font-weight */
  margin-left: -280px;
}

.navbar-brand img {
  margin-right: 10px;
}

.navbar-brand span {
  color: #ffffff;
  text-align: left;
  font-family: "DaysOne-Regular", sans-serif;
  font-size: 40px;
  font-weight: 700;
  position: relative;
	top: 15px;
}

.navbar-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-item {
  margin-left: 20px;
  
}

.nav-link {
  text-decoration: none;
  color: #ffffff;
  text-align: left;
  font-family: "Ramabhadra-Regular", sans-serif;
  font-size: 24px;
  font-weight: 400;
  position: relative;
  top: 50%;
  width: 83px;
  padding: 0.5rem 1rem; 
  border-radius: 5px; 
  transition: background-color 0.3s, color 0.3s; /* Smooth transitions */
}

.nav-link:hover, .nav-link.active {
  background-color: #007bff; 
  color: #fff; 
}
