/* CloudSure Lucide-style outline icons — shared across marketing and app UI */

.cs-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(37, 89, 207, 0.08);
  border: 1px solid rgba(37, 89, 207, 0.16);
  color: var(--cs-primary-action-blue);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}

.cs-icon {
  display: block;
  flex-shrink: 0;
}

.cs-icon-wrap--sm {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.cs-icon-wrap--sm .cs-icon {
  width: 16px;
  height: 16px;
}

.cs-icon-wrap--tab {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border: none;
  color: #ffffff;
}

.cs-icon-wrap--tab .cs-icon {
  width: 15px;
  height: 15px;
}

.cs-icon-wrap--tab-saas {
  background: var(--cs-primary-action-blue);
}

.cs-icon-wrap--tab-docker {
  background: #0db7ed;
}

.cs-list-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 0.45rem;
  color: var(--cs-primary-action-blue);
  vertical-align: -0.15em;
}

.cs-list-check .cs-icon {
  width: 14px;
  height: 14px;
}

.theme-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem;
  height: 1.1rem;
  line-height: 1;
}

.theme-toggle-icon__glyph {
  display: none;
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle-icon__glyph.is-visible {
  display: block;
}

.dashboard-notifications__icon.cs-icon-wrap {
  margin-top: 0.05rem;
}

.cs-icon-wrap--notif-success {
  color: #15803d;
  background: rgba(21, 128, 61, 0.1);
  border-color: rgba(21, 128, 61, 0.2);
}

.cs-icon-wrap--notif-error {
  color: #b91c1c;
  background: rgba(185, 28, 28, 0.1);
  border-color: rgba(185, 28, 28, 0.2);
}

.cs-icon-wrap--notif-warning {
  color: #b45309;
  background: rgba(180, 83, 9, 0.1);
  border-color: rgba(180, 83, 9, 0.2);
}

.cs-icon-wrap--notif-info {
  color: var(--cs-primary-action-blue);
  background: rgba(37, 89, 207, 0.1);
  border-color: rgba(37, 89, 207, 0.2);
}
