.conference-card {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  max-width: 100%;
  text-align: left;
  border: 0.3px solid #009444;
}
.conference-card  iframe {
  width:100%;
  height:343px;
}
.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
  padding: 10px;
}

.video-overlay p {
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
}

.fullscreen-btn, .play-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.5em;
}

.info, .details, .feedback {
  padding: 15px;
}

.speaker{
  padding: 15px;

}
.speaker h2 {
  margin: 10px 0 5px;
  margin-bottom: 20px;
  font-size: 1.2em;
  color: #333;
}

.speaker p {
  margin: 5px 0;
  color: #777;
  font-size: 0.9em;
}


.info p {
  margin: 0;
  font-size: 0.9em;
  color: #555;
}

.details h2 {
  margin: 10px 0 5px;
  font-size: 1.2em;
  color: #333;
}

.details p {
  margin: 5px 0;
  color: #777;
  font-size: 0.9em;
}

.feedback {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid #eee;
}

.feedback .stars {
  margin-top: 5px;
}

.feedback .stars span {
  font-size: 1.2em;
  color: #ffd700;
}