/* Circular cat photo style */
.cat-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.cat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Position the overlay */
#whiskers-overlay {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
}
#whiskers-overlay:hover {
  transform: scale(1.05);
  transition: transform 0.3s;
}

/* Label below the cat photo */
.whiskers-label {
  position: absolute;
  bottom: -25px; /* Positions below the circle */
  left: 0;
  width: 100%;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: bold;
  color: #333;
  background: #fff8f0; /* Light tan background */
  padding: 3px 5px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  line-height: 1.1;
  white-space: nowrap;
}

/* Adjust overlay container to accommodate the label */
#whiskers-overlay {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  height: 115px; /* Increased height for the label */
}