/*
 GreenEco Meetings — safe Issues Exit/X styling
 Version: 3.3.16.44.2.510
 Screen only. Printing untouched.
*/

@media screen {
  /* Remove only the real standalone Exit control from Issues toolbar. */
  .meeting-issues-toolbar .meeting-issues-exit {
    display: none !important;
  }

  /* The existing title row remains unchanged except for reserving X space. */
  .meeting-issues-safe-title {
    position: relative !important;
    padding-left: 54px !important;
    box-sizing: border-box !important;
  }

  /*
    Fixed geometry in every state.
    No transform/translate/scale is used, so hover/press cannot move the X.
  */
  .meeting-issues-safe-close-x,
  .meeting-issues-safe-close-x:hover,
  .meeting-issues-safe-close-x:active,
  .meeting-issues-safe-close-x:focus,
  .meeting-issues-safe-close-x:focus-visible {
    position: absolute !important;
    top: 10px !important;
    left: 12px !important;
    right: auto !important;
    bottom: auto !important;

    width: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    transform: none !important;
    translate: none !important;
    scale: none !important;

    border: 1px solid #87969c !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: #213640 !important;
    box-shadow: none !important;
    filter: none !important;
    outline: none !important;

    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
    z-index: 6 !important;
  }

  .meeting-issues-safe-close-x:hover,
  .meeting-issues-safe-close-x:focus-visible {
    background: #eef7f9 !important;
    border-color: #5f9da8 !important;
    color: #0f5668 !important;
  }
}
