/* Lesson Button Styles */
.lesson-more-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: white;
  border: none;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 10;
  padding: 8px 16px;
  font-family: var(--font-inter, sans-serif);
  gap: 8px;
  transition: transform 0.2s ease;
}

.play-icon {
  width: 18px;
  height: 18px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon svg {
  width: 6px;
  height: 8px;
  margin-left: 1px; /* Small offset for optical centering */
}

.lesson-more-btn:hover {
  transform: translateY(-2px);
}

/* Responsive styling */
@media (max-width: 768px) {
  .lesson-more-btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px !important;
    width:32%;
    font-size: 11px;
    padding: 7px 14px;
  }
  .lesson-slide-overlay
  {
    position: relative;
  }
  .lesson-slide-overlay
  {
    bottom:0px;
    position: absolute;
    padding-bottom:80px;
    text-align:center;
  }
  
  .play-icon {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 576px) {
  .lesson-more-btn {
    bottom: 10px;
    right: 10px;
    font-size: 10px;
    padding: 6px 12px;
  }
  
  .play-icon {
    width: 14px;
    height: 14px;
  }
  
  .play-icon svg {
    width: 5px;
    height: 7px;
  }
} 