.ecofast-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0 24px 0;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  font-size: 16px;
  position: relative;
  overflow: hidden;
}
.ecofast-card.is-loading .ecofast-card-head,
.ecofast-card.is-loading .ecofast-list,
.ecofast-card.is-loading .ecofast-card-footer {
  opacity: 0.4;
}
.ecofast-loading {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity 0.2s ease;
}
.ecofast-card:not(.is-loading) .ecofast-loading {
  opacity: 0;
  pointer-events: none;
}
.ecofast-loading-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(46, 46, 46, 0.2);
  border-top-color: rgba(46, 46, 46, 0.8);
  border-radius: 50%;
  animation: ecofast-spin 1s linear infinite;
}
.ecofast-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 8px;
  margin-bottom: 12px;
}
.ecofast-icon {
  font-size: 18px;
}
.ecofast-title {
  font-weight: 700;
  font-size: 1.1rem;
}
.ecofast-toggle {
  margin-left: auto;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  color: #2e2e2e;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ecofast-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 16px;
  transition: opacity 0.15s ease;
}
.ecofast-toggle-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.2s ease;
}
.ecofast-card[data-collapsed="true"] .ecofast-toggle-icon svg {
  transform: rotate(180deg);
}
@keyframes ecofast-spin {
  from { transform: rotate(0); }
  to { transform: rotate(360deg); }
}
.ecofast-list {
  margin: 0;
  padding-left: 20px;
}
.ecofast-list li {
  margin: 8px 0;
  line-height: 1.5;
}
.ecofast-card-footer {
  margin-top: 12px;
  font-size: 0.75rem;
  color: rgba(46, 46, 46, 0.55);
}
@media (prefers-color-scheme: dark) {
  .ecofast-card {
    background: #e9ffe9;
    border-color: #00af00;
    box-shadow: none;
    color: #2e2e2e;
  }
  .ecofast-card-head {
    border-color: #00af00;
  }
}

.ecofast-list > li::before {
    background: #3f3f3f;
    height: 0.4em;
    width: 0.4em;
    top: .4117647059em; 
    left: -1.1764705882em; 
    border-radius: 50%;
}
