/* Floating tab container */
#local-annc-tab {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #0073e6;
  color: #fff;
  padding: 14px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: width 0.3s ease;
  z-index: 9999;

  width: 65px;         /* default width: icon only */
  overflow: hidden;
}

#local-annc-tab:hover {
  width: 180px;        /* enough space for 2 lines */
}

/* Announcement icon */
#local-annc-icon {
  font-size: 36px;     /* bigger icon */
  margin-right: 8px;
  min-width: 36px;
  text-align: center;
}

/* Text */
#local-annc-text {
  opacity: 0;
  transition: opacity 0.25s ease;
  font-size: 1rem;          /* keep size as is */
  font-weight: 600;
  display: flex;
  flex-direction: column;   /* force 2 lines */
  line-height: 1.2;
  text-align: center;
  white-space: normal;
}

#local-annc-tab:hover #local-annc-text {
  opacity: 1;
}

/* Line styling */
#local-annc-text .line1,
#local-annc-text .line2 {
  display: block;
  width: 100%;
  text-align: center;
}
