/* Notice Bubble Styles */
.summer-tab-button {
  position: relative;
}

.summer-tab-button.tab-reward:not(.active) {
  overflow: visible !important;
}
.summer-tab-button.tab-reward.active {
  overflow: hidden !important;
}

.notice-bubble {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  background-color: #e13734;
  border-radius: 50%;
  color: white;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 0 4px;
  box-sizing: border-box;
  transform: skewX(8deg);
}

/* Hide notice bubble when tab is active */
.summer-tab-button.tab-reward.active .notice-bubble {
  display: none;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .notice-bubble {
    min-width: 18px;
    height: 18px;
    top: -6px;
    right: -6px;
    font-size: 11px;
    padding: 0 3px;
  }
}
