:root {
    --brand: #1C3F7C;   /* couleur principale plus profonde */
    --brand-2: #5BC0EB; /* couleur secondaire claire et vive */
    --soft: #F4F4F9;    /* couleur douce pour fonds ou textes légers */
}


body {
	background: var(--soft);
	font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.navbar-brand span {
	font-weight: 700;
	letter-spacing: .2px;
}

.status-badge {
	font-size: .9rem;
	padding: .35rem .6rem;
	border-radius: 999px;
}

.card {
	border: none;
	box-shadow: 0 6px 18px rgba(18, 19, 56, .06);
}

.stepper {
	display: flex;
	gap: 1rem;
	overflow: auto;
	padding-bottom: .5rem
}

.step {
	position: relative;
	flex: 1 1 160px;
	min-width: 160px;
	background: white;
	border-radius: 1rem;
	padding: 1rem;
	text-align: left;
	border: 1px solid #eef0f6;
}

.step .icon {
	width: 38px;
	height: 38px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

/*.step.done .icon {
	background: #e6f7ef;
	color: #0a7d47;
	border: 1px solid #bde7cf;
}

.step.active {
	border-color: var(--brand);
}

.step.active .icon {
	background: #efeaff;
	color: var(--brand);
	border: 1px solid #d9d2ff;
}

.step.pending .icon {
	background: #ffecec;
	color: #c9302c;
	border: 1px solid #ffd3d3;
}*/

.step .label {
	font-weight: 600;
}

.amount {
	font-size: 2.2rem;
	font-weight: 800;
}

.copy-btn {
	border: none;
	background: transparent
}

.bg-brand {
	background: var(--brand) !important;
}

.bg-brand {
	background: var(--brand) !important;
}

.brand-gradient {
	background: linear-gradient(135deg, var(--brand), var(--brand-2)) !important;
}

.text-brand {
    color: var(--brand);
}


.border-brand {
	border-color: var(--brand) !important;
}

.border-brand-2 {
	border-color: var(--brand-2) !important;
}

.form-control::placeholder {
	color: #98a0b3
}

.badge-soft {
	background: #efedff;
	color: var(--brand);
}

footer {
	color: #7b8093
}

.kbd {
	border: 1px solid #d9d9e7;
	border-bottom-width: 2px;
	border-radius: .5rem;
	padding: .15rem .35rem;
	font-weight: 600
}

input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
}

.card {
	box-shadow: none !important;
}

.text-blink {
	animation: blink-animation 1s steps(5, start) infinite;
	-webkit-animation: blink-animation 1s steps(5, start) infinite;
}
@keyframes blink-animation {
	to {
		visibility: hidden;
	}
}
@-webkit-keyframes blink-animation {
	to {
		visibility: hidden;
	}
}