.cigct-container {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  margin: 1.5rem 0;
  font-family: 'Segoe UI', Roboto, sans-serif;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}
.cigct-container:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.cigct-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.cigct-code {
  font-weight: 600;
  font-size: 1rem;
  color: #000;
}
.cigct-label {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}
.cigct-label-new { background: #28a745; color: #fff; }
.cigct-label-expired { background: #dc3545; color: #fff; }
.cigct-copy-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
  color: #0073aa;
  border-radius: 6px;
}
.cigct-copy-button:hover {
  color: #005177;
}
.cigct-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.cigct-button-text {
  font-size: 0.9rem;
}
.cigct-desc {
  padding: 0 20px 16px;
  margin: 0;
  font-size: 0.95rem;
  color: #666;
}
@media (max-width: 480px) {
  .cigct-cta {
    padding: 12px 16px;
  }
  .cigct-button-text {
    display: none;
  }
}