.integration-grid {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.integration-container {
  border: 1px solid #222;
  border-radius: 10px;
  height: 125px;
  width: 250px;
  background-color: #111;
  margin-bottom: 15px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  color: #ddd;
}

.integration-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.integration-logo {
  height: 40px;
  width: auto;
  filter: invert(1);
  position: absolute;
  top: 15px;
  right: 15px;
  opacity: 0.6;
  width: 50px;
}

.integration-info {
  font-family: monospace;
  font-size: 0.8rem;
  line-height: 1.2rem;
  margin-top: auto;
}

.status {
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}

.status.active {
  background: #069009;
  color: #fff;
}

.status.inactive {
  background: #333;
  color: #888;
}