/* 🔒 Lock-Anzeige für gesperrte Artikel */
.article-lock-indicator {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 152, 0, 0.95);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 10002;
  pointer-events: auto;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideIn 0.3s ease-out;
  max-width: 300px;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.lock-indicator-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lock-icon {
  font-size: 18px;
  margin-right: 8px;
}

.lock-text {
  font-weight: 700;
  font-size: 15px;
}

.lock-hint {
  font-size: 12px;
  opacity: 0.9;
  font-weight: 400;
}

.article-locked-view {
  position: relative;
}

.article-locked-view::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 152, 0, 0.05);
  pointer-events: none;
  z-index: 1;
  border: 2px solid rgba(255, 152, 0, 0.3);
  border-radius: 4px;
}

.article-locked {
  cursor: not-allowed !important;
  opacity: 0.7 !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  pointer-events: none !important;
}

/* Dark Mode Styles */
body.dark-mode .article-lock-indicator {
  background: rgba(255, 152, 0, 0.95);
  color: #1a1a1a;
}

body.dark-mode .article-locked-view::before {
  background: rgba(255, 152, 0, 0.1);
  border-color: rgba(255, 152, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
  .article-lock-indicator {
    top: 10px;
    right: 10px;
    padding: 8px 12px;
    font-size: 12px;
    max-width: 200px;
  }
  
  .lock-text {
    font-size: 13px;
  }
  
  .lock-hint {
    font-size: 11px;
  }
}




