/* body.path-group #admin-toolbar {
    display: none !important;
}

body.path-group {
    margin-top: 0 !important;
    padding-top: 0 !important;
} */
#toolbar-bar {
    display: none !important;
}

/* --- Website Feedback Modal Custom Styling --- */

/* Title bar: Off-black, white text */
.website-feedback-dialog .ui-dialog-titlebar.ui-widget-header {
  background: #22292f !important;
  color: #fff !important;
  border: none !important;
  position: relative;
}

/* --- CLOSE BUTTON: Show only a white "×", no background --- */
.website-feedback-dialog .ui-dialog-titlebar-close.ui-button {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: #fff !important;
  position: absolute !important;
  top: 50%;
  right: 0.7em;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  outline: none;
}

/* Key fix: kill white background (from Claro or other theme) on icon, force our centered, white × */
.website-feedback-dialog .ui-dialog-titlebar-close .ui-icon-closethick {
  background: transparent !important;
  color: #fff !important;
  font-size: 1.8em !important;
  font-weight: bold;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-align: center;
  opacity: 1 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
}
.website-feedback-dialog .ui-dialog-titlebar-close .ui-icon-closethick::before {
  content: "×";
  color: #fff !important;
  font-size: 1em;
  font-weight: bold;
  display: block;
  width: 100%;
  text-align: center;
  line-height: 1;
  pointer-events: none;
}

/* Hide the label "Close" typically added for screen readers if you want pure icon look */
.website-feedback-dialog .ui-dialog-titlebar-close .ui-button-icon-space,
.website-feedback-dialog .ui-dialog-titlebar-close[title]:after {
  display: none !important;
}

/* (Optional) Close button on hover: brighten X for accessibility */
.website-feedback-dialog .ui-dialog-titlebar-close.ui-button:hover,
.website-feedback-dialog .ui-dialog-titlebar-close.ui-button:focus {
  filter: brightness(160%);
  color: #ffe !important;
}

/* --- Dialog content area: Light sky blue --- */
.website-feedback-dialog .ui-dialog-content.ui-widget-content {
  background: #cbeafe !important;
  color: #222;
}

/* --- Button pane (bottom): Off-black --- */
.website-feedback-dialog .ui-dialog-buttonpane.ui-widget-content {
  background: #22292f !important;
  border-top: 1px solid #30353b !important;
}

/* --- Send Button: white, black text, no border --- */
.website-feedback-dialog .ui-dialog-buttonpane .button {
  background: #fff !important;
  color: #000 !important;
  border: none !important;
  font-weight: bold;
}

/* --- (Optional) Dialog: a bit of roundness and drop-shadow polish --- */
.website-feedback-dialog {
  border-radius: 8px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18), 0 1.5px 8px rgba(0,0,0,0.15);
  overflow: hidden;
}


/* Hide Author and Created fields in Website Feedback dialog */
.website-feedback-dialog .field--name-uid,
.website-feedback-dialog .field--name-created {
  display: none !important;
}

/* --- END Website Feedback Modal Custom Styling --- */