.toolbar-horizontal .banner-section {
  margin-top: 40px; /* adjust */
}

.contextual-region {
  position: relative;
  z-index: 1;
}
.contextual-region {
  display: block;
}

/****
 * Custom styles for the login page
 ****/

.login-section {
  background: #f5e6d3; /* theme ke according beige */
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.login-box {
  background: #fff;
  border-radius: 10px;
}

.login-box h3 {
  color: #7a2e0e;
  font-weight: 600;
}

.form-control {
  border-radius: 5px;
}

.btn-primary {
  background-color: #7a2e0e;
  border: none;
}

.login-wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f7fb;
}

.login-card {
  width: 380px;
  padding: 30px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.user-login-form .form-control {
  border-radius: 8px;
}

.user-login-form .btn-primary {
  width: 100%;
  border-radius: 8px;
}


/* content page */
.content-section {
  background: #f5e6d3;
  min-height: 70vh;
  display: flex;
  align-items: center;
}



/* user account menu */
.user-menu {
  position: relative;
  display: inline-block;
  z-index: 9999;
}

.user-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: #fff;
  padding: 8px 12px;
  border-radius: 20px;
}

.user-dropdown {
  position: absolute;
  top: 45px;
  right: 0;
  background: #eee;
  border-radius: 12px;
  padding: 10px 0;
  min-width: 180px;

  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.2s ease;

  z-index: 10000;
}

.user-dropdown.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.user-dropdown a {
  display: block;
  padding: 10px 15px;
  color: #007bff;
  text-decoration: none;
}

.user-dropdown a:hover {
  background: #ddd;
}