

/* olivero styles override */
.site-header,
.site-header__inner,
.site-branding {
  box-sizing: content-box !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #0d77b5 !important;
  min-height: unset !important;
}


.site-branding__text {
  /*customizing Neopoet logo */
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  font-weight: 400;
  color: antiquewhite;
  font-size: 30px;
}

/* Header Styles */
.site-header {
  background: #0d77b5;
  color: white;
  padding: 0;
  margin: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  width: 100%;
  border: none;
  line-height: 1;
  z-index: 900;
  height: 60px; /*key AA to review*/
  display: flex;
  align-items: center;
}


.site-header__inner {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
  line-height: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center; 
  position: relative;
  background: inherit; /*otherwise olivero site-header.css will override this*/
}

.site-branding {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: inherit; /*otherwise olivero header-site-branding.css will override this*/
}

.site-branding__link {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
  padding: 0.5rem 1rem;
  margin: 0;
  line-height: 1;
}

@media (max-width: 768px) {
  .site-header__inner {
    justify-content: center;
  }

  .site-branding {
    margin-left: 40px; /* Hamburger width + margin */
  }
}


/* Layout adjustments */
.layout-container {
  display: flex;
/*  min-height: 100vh;*/
  margin: 0;
  padding: 0;
  width: 100%;
}

.main-content {
  flex: 1;
  padding: 1rem 1.5rem 1.5rem;
  margin-left: 220px; /* Match sidebar width */
  margin-top: 0;
  box-sizing: border-box;
  background: radial-gradient(circle, 
  rgba(200, 220, 255, 0.25), 
  rgba(230, 200, 250, 0.25), 
  rgba(255, 255, 240, 0.2)
);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 18px;
}

/* Prevent gradient blur on tabs */
.tabs, .nav-tabs {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  z-index: 1;
}

/* View tables as cards */

/* User forms should have a white background */
.form-user, .form-user-form, form.user-form, .user-form, .profile-form {
  background: #fff !important;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.views-table, .view-content table, .table, .block-views table {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  padding: 24px;
  margin-bottom: 16px;
  overflow: hidden;
}



/* Mobile adjustments */
@media (max-width: 768px) {
  .layout-container {
    flex-direction: column;
    margin-top: 0;
    margin-left: 0 !important;
  }
  .main-content {
    margin-left: 0 !important;
  }
}