@charset "utf-8";
/* CSS Document */

.right-stack {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  z-index: 9999;
}
.side-tab {
  display: flex;
  align-items: center;
  width: 180px;
  height: 50px;
  border-radius: 18px 0 0 18px;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid #DB9500;
  border-right: none;
  padding: 0;
  margin-right:-1rem;
  margin-top:0.7rem;
  background: #F8C862;
  overflow: hidden;
  transition: filter 0.15s ease;
}
.side-tab:hover  { filter: brightness(0.93); }
.side-tab:active { filter: brightness(0.85); }
.side-tab:focus-visible {
  outline: 2px solid #f2a500;
  outline-offset: 2px;
}
.tab-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2a500;
}
.tab-icon svg { width: 22px; height: 22px; fill: none; }
.tab-label {
  flex: 1;
  font-size: 19px;
  font-weight: 500;
  text-align: left;
  padding: 0 10px;
  line-height: 1.2;
  white-space: normal;
  color: #000000;
}