.embed-widget {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.embed-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.embed-loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  color: #666666;
  font-family: Arial, sans-serif;
  font-size: 16px;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.embed-error {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #f5f5f5;
  border: 2px dashed #ccc;
}

.embed-widget iframe {
  border: none;
  width: 100%;
  height: 100%;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .embed-loading,
  .embed-error {
    font-size: 14px;
  }
  
  .embed-error > div:first-child {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .embed-loading,
  .embed-error {
    font-size: 12px;
  }
  
  .embed-error > div:first-child {
    font-size: 36px;
  }
}