/* Shared return-to-dashboard control */
.dashboard-return-link {
  display:inline-flex;
  align-items:center;
  gap:7px;
  min-height:34px;
  padding:7px 11px;
  border:1px solid #d7dde5;
  border-radius:8px;
  background:#fff;
  color:#182033;
  text-decoration:none;
  font:700 12px/1 Arial,sans-serif;
  white-space:nowrap;
  box-shadow:0 2px 7px rgba(20,31,48,.08);
  transition:background .15s ease,border-color .15s ease,transform .15s ease;
}
.dashboard-return-link:hover {background:#f2f5f8;border-color:#bfc8d3}
.dashboard-return-link:active {transform:translateY(1px)}
.dashboard-return-link:focus-visible {outline:3px solid rgba(0,95,174,.25);outline-offset:2px}
.dashboard-return-link__arrow {font-size:17px;line-height:1}
.dashboard-return-row {
  display:flex;
  align-items:center;
  margin:0 0 14px;
}
/* Dashboard return stays white on every header */
.header .dashboard-return-link,
header .dashboard-return-link {
  background:#fff;
  color:#182033;
  border-color:#d7dde5;
  box-shadow:0 2px 7px rgba(20,31,48,.08);
}
.header .dashboard-return-link:hover,
header .dashboard-return-link:hover {
  background:#f2f5f8;
  border-color:#bfc8d3;
}
/* Buttons placed inside a light application header */
.top .dashboard-return-link {
  background:#fff;
  color:#182033;
  border-color:#d7dde5;
  box-shadow:none;
  flex:0 0 auto;
}
@media(max-width:600px){
  .dashboard-return-link{min-height:32px;padding:6px 9px;font-size:11px}
  .dashboard-return-row{margin-bottom:10px}
}
