/* Video Locked Container */
.video-locked-container,
.video-locked-overlay {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  min-height: 200px;
}

.video-locked-container img.video-poster-locked,
.video-locked-overlay img {
  width: 100%;
  height: auto;
  opacity: 0.4;
  filter: grayscale(30%);
}

.license-required-overlay,
.license-required-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Lock button styled like a play button */
.license-required-overlay .lock-btn,
.license-required-badge .lock-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: not-allowed;
  transition: all 0.3s ease;
}

.license-required-overlay .lock-btn i,
.license-required-badge .lock-btn i {
  color: #fff;
  font-size: 28px;
}

.license-required-overlay p,
.license-required-badge span {
  margin: 12px 0 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  background-color: rgba(0, 0, 0, 0.6);
  padding: 6px 16px;
  border-radius: 4px;
}

/* Hover effect for locked items */
.video-locked-container:hover .lock-btn,
.video-locked-overlay:hover .lock-btn {
  background-color: rgba(0, 0, 0, 0.85);
  border-color: #ffc107;
}

.video-locked-container:hover .lock-btn i,
.video-locked-overlay:hover .lock-btn i {
  color: #ffc107;
}

/* License Locked Buttons */
.license-locked button.disabled,
button.disabled[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #6c757d;
  border-color: #6c757d;
}

.license-locked button.disabled i,
button.disabled[disabled] i {
  margin-right: 5px;
  color: #ffc107;
}

/* License Notice Text */
.license-notice {
  font-size: 12px;
  color: #6c757d;
}

.license-notice i {
  margin-right: 4px;
  color: #ffc107;
}

/* Topic/My Videos Page - Video Item Lock */
.video-item .video-locked-overlay {
  min-height: 150px;
  cursor: not-allowed;
}

.video-item .video-locked-overlay .lock-btn {
  width: 60px;
  height: 60px;
}

.video-item .video-locked-overlay .lock-btn i {
  font-size: 22px;
}

.video-item .video-locked-overlay p,
.video-item .video-locked-overlay span {
  font-size: 12px;
  margin-top: 8px;
  padding: 4px 12px;
}

/* Smaller lock button for compact views */
.compact-video .lock-btn {
  width: 50px;
  height: 50px;
}

.compact-video .lock-btn i {
  font-size: 18px;
}

/* Results/Reports page - Action buttons */
.results-reports-title-actions .license-locked {
  display: inline-block;
}

.results-reports-title-actions .license-locked button {
  background-color: #6c757d !important;
  border-color: #6c757d !important;
  pointer-events: none;
}

/* Activity Start Page - Start button locked */
.activity-start-sidebar .button-container .license-notice {
  margin-top: 8px;
  text-align: center;
}

/* License Locked Button Component */
.license-locked-btn {
  opacity: 0.65;
  cursor: not-allowed !important;
  position: relative;
}

.license-locked-btn .license-lock-icon {
  margin-right: 4px;
  color: #ffc107;
  font-size: 0.9em;
}

/* License Locked Link Component */
.license-locked-link {
  opacity: 0.65;
  cursor: not-allowed !important;
  color: #6c757d !important;
  text-decoration: none;
}

.license-locked-link .license-lock-icon {
  margin-right: 4px;
  color: #ffc107;
}

/* License Locked Dropdown Component */
.license-locked-dropdown .dropbtn.disabled {
  opacity: 0.65;
  cursor: not-allowed !important;
  background-color: #6c757d !important;
  border-color: #6c757d !important;
}

.license-locked-dropdown .dropbtn.disabled .license-lock-icon {
  margin-right: 4px;
  color: #ffc107;
}

/* License Locked Container/Overlay Component */
.license-locked-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.license-locked-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.license-locked-content {
  text-align: center;
  color: #fff;
}

.license-lock-icon-large {
  font-size: 48px;
  color: #ffc107;
  margin-bottom: 12px;
  display: block;
}

.license-locked-message {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #fff;
}

.license-locked-title {
  font-size: 14px;
  color: #ccc;
  margin: 0;
}

.license-locked-backdrop {
  opacity: 0.3;
  pointer-events: none;
  filter: grayscale(50%);
}

/*# sourceMappingURL=license-access.css.map*/