#facebook-toggle {
  position: fixed;
  top: 30%;
  left: 0;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: top left;
  background: #3b5998;
  color: #fff;
  padding: 3px 20px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0 0 8px 8px;
  z-index: 99997;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  text-align: left;
}

#facebook-toggle .label {
  margin: 0;
}

#facebook-toggle .button-like-count {
  font-size: 15px;
  color: #fff;
  margin-top: 2px;
}

#facebook-panel {
  position: fixed;
  top: 30%;
  left: -300px;
  width: 280px;
  background: #fff;
  box-shadow: 4px 0 12px rgba(0,0,0,0.2);
  transition: left 0.3s ease;
  z-index: 99996;
  padding: 15px;
  border-radius: 0 8px 8px 0;
}

#facebook-panel.open {
  left: 50px;
}

.facebook-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #3b5998;
  display: flex;
  align-items: center;
  gap: 10px;
}

.facebook-header img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.facebook-header .fb-link {
  color: #3b5998;
  font-weight: bold;
  text-decoration: none;
}

.facebook-like-count {
  font-size: 14px;
  color: #3b5998;
  font-weight: bold;
  margin: 8px 0;
  text-align: center;
}

.fb-like-container {
  margin-top: 10px;
}

@media (max-width: 600px) {
  #facebook-toggle {
    padding: 8px 16px;
    font-size: 14px;
  }
  .facebook-header img {
    width: 24px;
    height: 24px;
  }
  .facebook-header {
    font-size: 16px;
  }
}

.thumb-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 4px;
}
