:root{
  --card-bg: #fff;
  --comment-bg: #f0f0f0;
  --border-color: #ccc;
}
.container-share {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  bottom: 0;
  right: 0;
  align-items: center;
  justify-content: end;
  z-index: 10000;
  background-color: rgba(0,0,0,0.2);
}

.container-btns {
  display: flex;
  gap: 10px;
  background-color: var(--card-bg);
  flex-wrap: wrap;
  border-radius: 4px;
  position: fixed;
  justify-content: center;
  align-items: center;
  bottom: 0;
  left: 0;
  padding: 10px;
  right: 0;
}

#close2 {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: transparent;
  cursor: default;
  border: none;
  color: transparent;
}

.share-btn {
  padding: 15px;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  color: white;
  height: 60px;
  width: 60px;
  font-size: 25px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  display: flex;
}

.facebook { background: #1877f2; }
.twitter { background: #1da1f2; }
.whatsapp { background: #25d366; }
.telegram { background: #0088cc; }
.linkedin { background: #0077b5; }
.reddit { background: #ff4500; }
.pinterest { background: #bd081c; }
.email { background: #555; }
.copy { background: var(--card-bg); color: var(--text-color); border: 1px solid var(--border-color); }
.embed { background: var(--comment-bg); color: var(--text-color); border: 1px solid var(--border-color); }
