body {
	background-color: #f9f1e6;
}

.sticky-header {
	position: sticky;
	top: 0;
	background: white;
	z-index: 1000;
	padding: 10px;
	border-bottom: 2px solid #ccc;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.header-logo {
	flex-shrink: 0;
	height: 60px;
	background: #131d4f;
	padding: 7px 10px;
	display: flex;
	align-items: center;
}

.header-logo img {
	height: 100%;
	width: auto;
}

.header-text {
	flex-grow: 1;
	text-align: right;
	font-size: 1.2rem;
	font-weight: bold;
}

.tab-pane {
	display: flex;
	flex-direction: column;
}

.tab-body {
	flex-grow: 1;
}

.color-green {
	color: #1c9781;
}

#formTabs .nav-item .active {
	background-color: #1c9781;
    color: #fff;
}

.form-buttons {
	display: flex;
	padding: 15px 0px;
	background: #fff;
	border-top: 1px solid #ddd;
}

.form-buttons .btn {
	margin-right: 10px;
}

.card-footer .declaracion {
	font-size: 12px;
}

@media (max-width: 768px) {
	#formTabs {
		overflow-x: auto;
		white-space: nowrap;
		display: flex;
		flex-wrap: nowrap;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	#formTabs::-webkit-scrollbar {
		display: none;
	}

	.nav-item {
		flex: 1 0 auto;
		text-align: center;
	}
}

@media (max-width: 576px) {
	.sticky-header {
		flex-direction: column;
		text-align: center;
		padding: 15px;
	}

	.header-logo {
		margin-bottom: 10px;
	}

	.header-text {
		text-align: center;
		font-size: 1rem;
	}

	.form-buttons .btn {
		width: 50%;
	}
}