.betterstack-status-container {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  background-color: #ffffff;
  /* border-radius: 8px; */
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  max-width: 300px;
  margin: 0;
}

.betterstack-status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative;
}

.betterstack-status-indicator.up {
  background-color: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
  animation: pulse 2s infinite;
}

.betterstack-status-indicator.down {
  background-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

.betterstack-status-text {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #1f2937;
}

.betterstack-status-text-title {
  color: #1f2937;
  margin: 0;
  margin-top: 10px;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
}

.betterstack-status-text.error {
  color: #ef4444;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(16, 185, 129, 0);
    transform: scale(1.1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    transform: scale(1);
  }
}

/* Dark mode support */
/* @media (prefers-color-scheme: dark) {
    .betterstack-status-container {
        background-color: #1F2937;
    }
    
    .betterstack-status-text {
        color: #F3F4F6;
    }
} */

/* Responsive design */
@media (max-width: 768px) {
  .betterstack-status-container {
    max-width: 100%;
  }
}
