.image-widget {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-widget img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.image-error-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  border: 2px dashed rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  color: rgba(0, 0, 0, 0.6);
}

.error-icon {
  font-size: 48px;
  margin-bottom: 10px;
  opacity: 0.7;
}

.error-text {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .error-icon {
    font-size: 32px;
  }
  
  .error-text {
    font-size: 12px;
  }
}