
@view-transition { navigation: auto; }

body { font-family: system-ui, -apple-system, sans-serif; }
input, select { font-size: 0.875rem; }

/* Smart Benefits Logo Styles - Minimalist Design */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.logo-container:hover {
  opacity: 0.85;
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg {
  width: 28px;
  height: 28px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  display: flex;
  flex-direction: row;
}

.brand-smart {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  letter-spacing: -0.02em;
}
.brand-benefits {
  font-size: 18px;
  font-weight: 600;
  color: #ff6600;
  letter-spacing: -0.02em;
}

.tagline {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 1px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* Truncate text in select options */
select option {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Badge styles */
.badge {
  font-size: 0.65rem;
  padding: 0.1rem 0.35rem;
  border-radius: 0.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  border: 1px solid;
}

/* Badge colors */
.badge-green { background-color: #ecfdf5; color: #166534; border-color: rgba(22, 101, 52, 0.3); }
.badge-yellow { background-color: #fef9c3; color: #854d0e; border-color: rgba(133, 77, 14, 0.3); }
.badge-orange { background-color: #fff7ed; color: #9a3412; border-color: rgba(154, 52, 18, 0.3); }
.badge-red { background-color: #fee2e2; color: #991b1b; border-color: rgba(153, 27, 27, 0.3); }
.badge-purple { background-color: #f3e8ff; color: #6b21a8; border-color: rgba(107, 33, 168, 0.3); }
.badge-blue { background-color: #dbeafe; color: #1e40af; border-color: rgba(30, 64, 175, 0.3); }
.badge-gray { background-color: #f3f4f6; color: #4b5563; border-color: rgba(75, 85, 99, 0.3); }

/* Status line */
.status-line {
  border-left: 4px solid;
  padding-left: 0.75rem;
}
.status-fournis { border-left-color: #22c55e; }
.status-augmentation { border-left-color: #eab308; }
.status-en-cours { border-left-color: #fb923c; }
.status-suppression { border-left-color: #ef4444; }
.status-modifie { border-left-color: #a855f7; }
.status-elargi { border-left-color: #3b82f6; }

.json-content {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.875rem;
  max-height: 600px;
  overflow-y: auto;
}

details summary { cursor: pointer; }

.contact-btn:hover .contact-icon {
    width: 18px;
    margin-right: 6px;
}