@media screen {
  .approval-menu-badge {
    min-width: 17px;
    height: 17px;
    margin-left: auto;
    padding: 0 4px;
    color: #fff;
    background: #c64c30;
    border: 2px solid #102332;
    border-radius: 999px;
    box-sizing: border-box;
    place-items: center;
    font-size: 9px;
    font-weight: 800;
    line-height: 13px;
  }
  .approval-menu-badge:not([hidden]) { display: inline-grid; }
  .approval-dashboard-alert {
    color: #533509;
    background: #fff3d6;
    border: 1px solid #dfb45d;
    border-left: 4px solid #c78614;
    border-radius: 7px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    padding: 7px 9px;
    position: fixed;
    z-index: 80;
    top: 60px;
    right: 14px;
    width: min(480px, calc(100vw - 100px));
    box-sizing: border-box;
    box-shadow: 0 8px 26px #263a3426;
  }
  .approval-dashboard-alert > div { min-width: 0; }
  .approval-dashboard-alert strong,
  .approval-dashboard-alert small { display: block; }
  .approval-dashboard-alert strong { font-size: 11px; line-height: 1.25; }
  .approval-dashboard-alert strong b { color: #a43b22; }
  .approval-dashboard-alert small {
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 9px;
  }
  .approval-dashboard-alert button {
    min-height: 27px;
    padding: 3px 8px;
    color: #fff;
    background: #9b5c0d;
    border: 0;
    border-radius: 5px;
    font-size: 9px;
    font-weight: 700;
  }
  @media (max-width: 620px) {
    .approval-dashboard-alert {
      grid-template-columns: 1fr;
      top: 64px;
      right: 8px;
      width: calc(100vw - 16px);
    }
    .approval-dashboard-alert button { width: 100%; min-height: 42px; }
  }
}
