

/* .video-btn {
  background: none;
  border: none;
  color: #777;
  font-size: 22px;
}

.video-btn:hover {
  background-color: #424344;
} */

/* .video-btn {
  background: none;
  border: none;
  color: #777;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);  */
  /* Soft drop shadow */
  /* border-radius: 50%;  */
  /* Optional: rounded button look */
  /* transition: box-shadow 0.3s ease, transform 0.2s ease;
} */

/* .video-btn:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transform: scale(1.1);
} */
/* .video-btn {
  background: none;
  border: none;
  color: #777;
  font-size: 22px;
  cursor: pointer;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);  */
  /* Shadow around triangle */
  /* transition: text-shadow 0.3s ease, transform 0.2s ease;
} */

/* .video-btn:hover {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);  */
  /* Stronger shadow on hover */
  /* transform: scale(1.1);
} */
.video-btn {
  background-color:#847894;
  border: none;
  color: white;
  font-size: 14px;             /* Smaller font */
  padding: 4px 16px;           /* Less padding for slim height */
  border-radius: 5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 1.5px 5px rgba(26, 23, 23, 0.7);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  font-weight: 600;
  height: 22px;                /* Even smaller fixed height */
  line-height: 1;
}

.video-btn:hover {
  background-color: #4b3b61;
  box-shadow: 0 3px 8px rgba(26, 23, 23, 0.7);
  transform: scale(1.05);
}


/* Modal styles */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.video-modal-content {
  position: relative;
  margin: 10% auto;
  width: 500px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}
.video-modal-content video {
  width: 100%;
  border-radius: 8px;
}
.video-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #888;
  cursor: pointer;
}
.video-close:hover {
  color: #000;
}
.video-replay {
  margin-top: 10px;
  padding: 6px 12px;
  font-size: 14px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.video-replay:hover {
  background-color: #218838;
}
