/* includes/shared/back-button.css */

.bb-topbar{
  position: fixed;
  top: 10px;
  left: 10px;
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 60;

  /* overlay ise sadece button tıklansın */
  pointer-events: none;
}
.bb-topbar > *{ pointer-events: auto; }

.bb-back{
  width:44px;
  height:44px;
  border:0;
  background:transparent;
  color: rgba(255,255,255,0.92);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  padding:0;
  border-radius: 0;
  font-size: 0;
}
.bb-back svg{ width:26px; height:26px; }
.bb-back:active{ transform: scale(0.98); }

.bb-title{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: rgba(255,255,255,0.88);
  user-select: none;
}