/* Reaction Bar Styling */
#reaction-bar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.reaction-btn {
  background: #fff;
  border: 2px solid #ddd;
  padding: 8px 15px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Hover & Active States */
.reaction-btn:hover {
  background: #f4f4f4;
  transform: scale(1.05);
}

.reaction-btn:active {
  transform: scale(0.95);
}

.reaction-btn img {
  width: 24px;
  height: 24px;
  transition: filter 0.3s ease;
}

.reaction-btn span {
  font-size: 16px;
  font-weight: bold;
  color: #444;
  transition: color 0.3s ease;
}

#share-btn:hover span {
  color: #FFD43B;
}

.pdfDisplay {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modal-content {
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.modal-header {
  background-color: #f4f4f6;
  border-bottom: 1px solid #e7e7e9;
  padding: 15px 20px;
}

.modal-title {
  font-weight: 600;
  color: #2c3e50;
}

.modal-body {
  padding: 25px;
  background-color: #ffffff;
}

.share-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.share-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f0f1f3, #ffffff);
  padding: 12px;
  border-radius: 12px;
  cursor: pointer;
  width: 100px;
  height: 110px;
  transition: all 0.3s ease;
  box-shadow: 5px 5px 10px #d1d9e6,
    -5px -5px 10px #ffffff;
}

.share-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 15px #d1d9e6,
    -8px -8px 15px #ffffff;
}

.share-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.share-card:hover img {
  transform: scale(1.1);
}

.share-card p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #2c3e50;
}

.link-share-container {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f4f4f6;
  padding: 10px;
  border-radius: 8px;
}

#shareLinkInput {
  flex-grow: 1;
  border: none;
  background-color: transparent;
  font-size: 14px;
}

.btn-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background-color: #FFD43B;
  border: none;
  border-radius: 6px;
}

.btn-copy img {
  width: 20px;
  height: 20px;
}

.btn-copy:hover {
  background-color: rgb(245, 197, 22);
  /* background-color: #fff; */
}

.close {
  font-size: 1.5rem;
  font-weight: 300;
  color: #6c757d;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.close:hover {
  opacity: 1;
}

.video {
  width: 100%;
}

iframe {
  width: 100%;
  aspect-ratio: 4/3;
}
