.powerbi-dashboard-embed {
  position: relative;
  background-color: #f9f9f9;
  border-radius: 6px;
  overflow: hidden;
  min-height: 200px;
}

.powerbi-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #444;
  height: 100%;
  width: 100%;
  padding: 2rem;
}

.powerbi-loader::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border: 3px solid #999;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.powerbi-dashboard-embed iframe {
  border: none !important;
  outline: none;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
