/* SGTL - Diseño moderno y profesional con tipografía Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	background: #FFFFFF;
	color: #333333;
	margin: 0;
	padding: 0;
	line-height: 1.6;
}

/* Jerarquía tipográfica mejorada */
h1 {
	font-size: 48px;
	font-weight: 700;
	color: #333333;
	margin-top: 0;
	margin-bottom: 1rem;
	line-height: 1.2;
}

h2 {
	font-size: 32px;
	font-weight: 600;
	color: #333333;
	margin-top: 3rem;
	margin-bottom: 1rem;
	line-height: 1.3;
}

h3 {
	font-size: 24px;
	font-weight: 600;
	color: #333333;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
	line-height: 1.4;
}

p, ul, ol {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	color: #333333;
}

/* Enlaces con color de acento azul profesional */
a {
	color: #007BFF;
	text-decoration: none;
	transition: all 0.2s ease;
}
a:hover {
	color: #0056b3;
	text-decoration: underline;
}

/* Estilos mejorados para tablas */
table {
	border-collapse: collapse;
	width: 100%;
	margin: 2rem 0;
	background: #FFFFFF;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
th, td {
	border: 1px solid #E5E5E5;
	padding: 1rem 1.25rem;
	text-align: left;
}
th {
	background: #F7F7F7;
	font-weight: 600;
	color: #333333;
}

/* Lista de módulos mejorada */
.modules-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1rem;
	margin: 2rem 0;
}

.modules-list li {
	background: #F7F7F7;
	border-radius: 8px;
	padding: 1rem 1.25rem;
	list-style: none;
	transition: all 0.2s ease;
	border: 1px solid #E5E5E5;
}

.modules-list li:hover {
	background: #FFFFFF;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.modules-list {
	padding-left: 0;
}

/* Imagen responsive */
img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 2rem 0;
}

/* Sección de miembros del proyecto */
.team-members-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.team-member {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 2rem;
	background: #F7F7F7;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.2s ease;
}

.team-member:hover {
	background: #FFFFFF;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.member-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid #007BFF;
	margin-bottom: 1.5rem;
	transition: all 0.2s ease;
}

.member-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(135deg, #007BFF, #0056b3);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	border: 4px solid #007BFF;
	transition: all 0.2s ease;
}

.member-avatar svg {
	width: 60px;
	height: 60px;
	fill: #FFFFFF;
}

.team-member:hover .member-photo {
	border-color: #0056b3;
	transform: scale(1.05);
}

.team-member:hover .member-avatar {
	border-color: #0056b3;
	transform: scale(1.05);
	background: linear-gradient(135deg, #0056b3, #003d82);
}

.member-name {
	font-size: 24px;
	font-weight: 600;
	color: #333333;
	margin-bottom: 0.5rem;
}

.member-role {
	font-size: 16px;
	font-style: italic;
	color: #666666;
	margin-bottom: 1.5rem;
}

.member-divider {
	width: 60px;
	height: 2px;
	background: #007BFF;
	margin: 1rem 0;
	border-radius: 1px;
}

.member-contact {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	font-size: 16px;
	color: #333333;
}

.contact-icon {
	width: 20px;
	height: 20px;
	fill: #007BFF;
}

.social-links {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: center;
}

.social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #007BFF;
	color: #FFFFFF;
	text-decoration: none;
	transition: all 0.2s ease;
	font-size: 18px;
}

.social-link:hover {
	background: #0056b3;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
	color: #FFFFFF;
}

/* Estilos para iconos en títulos */
h1 svg, h2 svg {
	transition: all 0.3s ease;
}

h2:hover svg {
	transform: scale(1.1) rotate(5deg);
}

.hero h1 svg {
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
}

/* Efectos hover para módulos con iconos */
.modules-list li {
	display: flex;
	align-items: center;
}

.modules-list li svg {
	transition: all 0.3s ease;
	flex-shrink: 0;
}

/* Módulos activos */
.modules-list li.active {
	border-left: 4px solid #28A745;
	position: relative;
}

.modules-list li.active:hover {
	background: #E8F5E8;
	transform: translateY(-1px);
}

.modules-list li.active:hover svg {
	transform: scale(1.2) rotate(10deg);
	filter: brightness(1.2);
}

.modules-list li.active:hover a {
	transform: translateX(5px);
	transition: transform 0.3s ease;
}

.modules-list li.active a {
	color: #28A745;
	font-weight: 500;
}

/* Módulos deshabilitados */
.modules-list li.disabled {
	background: #F8F9FA;
	border-left: 4px solid #DEE2E6;
	cursor: not-allowed;
	opacity: 0.7;
}

.modules-list li.disabled span {
	color: #6C757D;
	cursor: not-allowed;
}

.modules-list li.disabled small {
	color: #ADB5BD;
	font-style: italic;
	margin-left: 0.5rem;
}

.modules-list li.disabled:hover {
	background: #F8F9FA;
	transform: none;
}

.modules-list li.disabled:hover svg {
	transform: none;
	filter: none;
}

/* Estado de módulos */
.modules-status {
	background: #F8F9FA;
	border: 1px solid #DEE2E6;
	border-radius: 8px;
	padding: 1.5rem;
	margin: 2rem 0;
}

.modules-status p {
	margin-bottom: 1rem;
	color: #495057;
}

.status-indicators {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
}

.status-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 500;
	font-size: 14px;
}

.status-item.completed {
	color: #28A745;
}

.status-item.pending {
	color: #FFC107;
}

/* Responsive Design para Hero Section */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 48px;
	}
	
	.hero h1 svg {
		width: 40px;
		height: 40px;
	}
	
	.hero .subtitle {
		font-size: 20px;
		margin-bottom: 2.5rem;
	}
	
	.hero .subtitle svg {
		width: 20px;
		height: 20px;
	}
	
	.cta-button {
		font-size: 18px;
		padding: 16px 32px;
	}
	
	.cta-button svg {
		width: 16px;
		height: 16px;
	}
	
	.hero .container {
		padding: 1.5rem;
	}
	
	h2 svg {
		width: 24px;
		height: 24px;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: 36px;
	}
	
	.hero h1 svg {
		width: 32px;
		height: 32px;
	}
	
	.hero .subtitle {
		font-size: 18px;
	}
	
	.hero .subtitle svg {
		width: 18px;
		height: 18px;
	}
	
	.cta-button {
		font-size: 16px;
		padding: 14px 28px;
	}
	
	.cta-button svg {
		width: 14px;
		height: 14px;
	}
	
	h2 svg {
		width: 20px;
		height: 20px;
	}
	
	.modules-list li svg {
		width: 16px;
		height: 16px;
	}
}

ul, ol {
	padding-left: 2em;
}

input, select, textarea, button {
	font-family: inherit;
	font-size: 1em;
	padding: 0.5em;
	border: 1px solid #b0bec5;
	border-radius: 4px;
	margin-bottom: 0.7em;
	background: #fff;
}
button {
	background: #007BFF;
	color: #FFFFFF;
	border: none;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.2s ease;
	border-radius: 6px;
}
button:hover {
	background: #0056b3;
	transform: translateY(-1px);
}

/* Layout principal con contenedor centrado y whitespace generoso */
.container {
	max-width: 800px;
	margin: 0 auto;
	padding: 4rem 2rem;
	background: #FFFFFF;
}

.hero .container {
	padding: 2rem;
}

/* Hero Section - Pantalla completa */
.hero {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 100vh;
	background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 50%, #F7F7F7 100%);
	margin-bottom: 0;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23007BFF" opacity="0.1"/><circle cx="80" cy="30" r="1.5" fill="%23007BFF" opacity="0.08"/><circle cx="40" cy="70" r="1" fill="%23007BFF" opacity="0.12"/><circle cx="90" cy="80" r="2.5" fill="%23007BFF" opacity="0.06"/><circle cx="10" cy="60" r="1.8" fill="%23007BFF" opacity="0.1"/></svg>') repeat;
	pointer-events: none;
	z-index: 1;
}

.hero .container {
	position: relative;
	z-index: 2;
}

.hero h1 {
	font-size: 64px;
	font-weight: 700;
	color: #333333;
	margin-bottom: 1.5rem;
	line-height: 1.1;
	animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero .subtitle {
	font-size: 24px;
	color: #666666;
	margin-bottom: 3rem;
	font-weight: 400;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
	display: inline-block;
	background: #007BFF;
	color: #FFFFFF !important;
	font-size: 20px;
	font-weight: 500;
	padding: 18px 36px;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
	animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
	background: #0056b3;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
	text-decoration: none;
}

/* Secciones con mejor espaciado */
.section {
	margin-bottom: 4rem;
}

.section:last-child {
	margin-bottom: 2rem;
}

/* Module-specific styles */

/* Module header */
.module-header {
	background: #f8f9fa;
	border-bottom: 1px solid #e9ecef;
	padding: 1rem 0;
	margin-bottom: 2rem;
}

.module-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.back-link {
	display: flex;
	align-items: center;
	color: #007BFF;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.2s ease;
}

.back-link:hover {
	color: #0056b3;
}

.status-badge {
	display: flex;
	align-items: center;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 500;
}

.status-badge.active {
	background: rgba(40, 167, 69, 0.1);
	color: #28A745;
}

/* Module hero section */
.module-hero {
	text-align: center;
	padding: 3rem 0;
	background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
	border-radius: 12px;
	margin-bottom: 4rem;
}

.module-title {
	font-size: 48px;
	font-weight: 700;
	color: #333333;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.module-description {
	font-size: 20px;
	color: #666666;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
}

/* Users grid */
.users-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.user-card {
	background: #ffffff;
	border: 2px solid #e9ecef;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
}

.user-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.user-card.admin {
	border-color: #007BFF;
}

.user-card.operator {
	border-color: #28A745;
}

.user-card.cashier {
	border-color: #FFC107;
}

.user-card.technician {
	border-color: #17A2B8;
}

.user-icon {
	width: 64px;
	height: 64px;
	background: rgba(0, 123, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.user-card.admin .user-icon {
	background: rgba(0, 123, 255, 0.1);
}

.user-card.operator .user-icon {
	background: rgba(40, 167, 69, 0.1);
}

.user-card.cashier .user-icon {
	background: rgba(255, 193, 7, 0.1);
}

.user-card.technician .user-icon {
	background: rgba(23, 162, 184, 0.1);
}

.user-card h3 {
	margin: 0 0 0.5rem 0;
	font-size: 18px;
	font-weight: 600;
}

.user-card p {
	margin: 0;
	color: #666666;
	font-size: 14px;
}

/* Requirements sections */
.requirements-section {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 2rem;
	margin-bottom: 2rem;
}

.requirements-title {
	display: flex;
	align-items: center;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 1rem;
}

.requirements-title.admin {
	color: #007BFF;
}

.requirements-title.operator {
	color: #28A745;
}

.requirements-list {
	list-style: none;
	padding: 0;
	margin: 1rem 0;
}

.requirements-list li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1rem;
	font-size: 16px;
	line-height: 1.5;
}

.requirement-icon {
	font-size: 20px;
	margin-right: 1rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
}

/* Roles grid */
.roles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	margin-top: 2rem;
}

.role-card {
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
}

.role-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.role-icon {
	width: 48px;
	height: 48px;
	background: rgba(0, 123, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.role-card h3 {
	margin: 0 0 0.5rem 0;
	font-size: 16px;
	font-weight: 600;
}

.role-card p {
	margin: 0;
	color: #666666;
	font-size: 13px;
}

/* Features grid */
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.feature-card {
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 12px;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	width: 64px;
	height: 64px;
	background: rgba(0, 123, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.feature-card h3 {
	margin: 0 0 0.5rem 0;
	font-size: 18px;
	font-weight: 600;
}

.feature-card p {
	margin: 0;
	color: #666666;
	font-size: 14px;
}

/* Resources grid */
.resources-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.resource-card {
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 12px;
	padding: 2rem;
	transition: all 0.3s ease;
}

.resource-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.resource-icon {
	width: 64px;
	height: 64px;
	background: rgba(0, 123, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.resource-card h3 {
	margin: 0 0 0.5rem 0;
	font-size: 20px;
	font-weight: 600;
}

.resource-card p {
	margin: 0 0 1.5rem 0;
	color: #666666;
	font-size: 16px;
}

.resource-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #007BFF;
	text-decoration: none;
	font-weight: 500;
	padding: 0.75rem 1rem;
	background: rgba(0, 123, 255, 0.05);
	border-radius: 8px;
	transition: all 0.2s ease;
}

.resource-link:hover {
	background: rgba(0, 123, 255, 0.1);
	color: #0056b3;
}

/* Responsible person card */
.responsible-card {
	display: flex;
	align-items: center;
	background: #ffffff;
	border: 1px solid #e9ecef;
	border-radius: 12px;
	padding: 2rem;
	margin-top: 2rem;
}

.responsible-avatar {
	width: 80px;
	height: 80px;
	background: rgba(0, 123, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 2rem;
	flex-shrink: 0;
}

.responsible-photo {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 2rem;
	flex-shrink: 0;
	border: 3px solid #007BFF;
	background: #f8f9fa;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.responsible-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 30%;
	display: block;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
}

/* Fallback for when image doesn't load */
.responsible-photo::before {
	content: 'JM';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #007BFF;
	font-weight: 600;
	font-size: 24px;
	z-index: 1;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.responsible-photo.img-loaded::before {
	opacity: 0;
}

.responsible-photo.img-error::before {
	opacity: 1;
}

.responsible-photo.img-error img {
	display: none !important;
}

.responsible-info h3 {
	margin: 0 0 0.5rem 0;
	font-size: 22px;
	font-weight: 600;
}

.responsible-role {
	margin: 0 0 1rem 0;
	color: #666666;
	font-style: italic;
	font-size: 16px;
}

.responsible-contact {
	display: flex;
	align-items: center;
}

.responsible-contact a {
	color: #007BFF;
	text-decoration: none;
	font-weight: 500;
}

.responsible-contact a:hover {
	color: #0056b3;
}

/* Additional responsive styles for modules */
@media (max-width: 768px) {
	.module-title {
		font-size: 36px;
		flex-direction: column;
		text-align: center;
	}
	
	.module-description {
		font-size: 18px;
	}
	
	.users-grid {
		grid-template-columns: 1fr;
	}
	
	.roles-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	}
	
	.features-grid {
		grid-template-columns: 1fr;
	}
	
	.resources-grid {
		grid-template-columns: 1fr;
	}
	
	.responsible-card {
		flex-direction: column;
		text-align: center;
	}
	
	.responsible-avatar,
	.responsible-photo {
		margin-right: 0;
		margin-bottom: 1rem;
	}
}

@media (max-width: 480px) {
	.module-title {
		font-size: 28px;
	}
	
	.module-description {
		font-size: 16px;
	}
	
	.module-hero {
		padding: 2rem 1rem;
	}
	
	.requirements-section {
		padding: 1.5rem;
	}
	
	.user-card, .feature-card, .resource-card {
		padding: 1.5rem;
	}
}

/* Database Tables Styles */
.database-diagram {
	width: 100%;
	max-width: 800px;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	margin: 0 auto;
	display: block;
}

.diagram-container {
	text-align: center;
	margin: 2rem 0;
}

.table-info-card {
	background: #ffffff;
	border: 1px solid #e1e5e9;
	border-radius: 12px;
	padding: 2rem;
	margin: 2rem 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.table-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 2px solid #f8f9fa;
}

.table-header svg {
	color: #007BFF;
	flex-shrink: 0;
}

.table-header h3 {
	margin: 0;
	color: #2d3748;
	font-size: 1.25rem;
	font-weight: 600;
}

.table-purpose {
	margin-bottom: 2rem;
}

.table-purpose h4 {
	color: #4a5568;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.table-purpose h4::before {
	content: '';
	width: 4px;
	height: 1.2rem;
	background: linear-gradient(135deg, #007BFF, #0056b3);
	border-radius: 2px;
}

.table-fields h4 {
	color: #4a5568;
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.table-fields h4::before {
	content: '';
	width: 4px;
	height: 1.2rem;
	background: linear-gradient(135deg, #28a745, #20c997);
	border-radius: 2px;
}

.fields-grid {
	display: grid;
	gap: 1rem;
}

.field-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1rem;
	background: #f8f9fa;
	border-radius: 8px;
	border-left: 3px solid #007BFF;
	transition: all 0.2s ease;
}

.field-item:hover {
	background: #e3f2fd;
	transform: translateX(4px);
}

.field-item svg {
	color: #007BFF;
	flex-shrink: 0;
	margin-top: 2px;
}

.field-item strong {
	color: #2d3748;
}

.field-item code {
	background: #e9ecef;
	color: #e83e8c;
	padding: 0.125rem 0.25rem;
	border-radius: 3px;
	font-size: 0.875rem;
}

.normalization-section {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid #e1e5e9;
}

.normalization-section h3 {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	color: #2d3748;
	font-size: 1.125rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.normalization-section h3 svg {
	color: #ffc107;
}

.normalization-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
}

.norm-card {
	background: linear-gradient(135deg, #fff8e1, #fff3c4);
	border: 1px solid #ffecb3;
	border-radius: 8px;
	padding: 1.5rem;
	text-align: center;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.norm-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.norm-card h4 {
	color: #f57f17;
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.norm-card p {
	color: #5d4037;
	font-size: 0.875rem;
	margin: 0;
	line-height: 1.4;
}

.info-box {
	background: linear-gradient(135deg, #e3f2fd, #bbdefb);
	border: 1px solid #90caf9;
	border-radius: 8px;
	padding: 1.5rem;
	margin: 2rem 0;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.info-box svg {
	color: #1976d2;
	flex-shrink: 0;
	margin-top: 2px;
}

.info-box p {
	margin: 0;
	color: #1565c0;
	font-size: 0.875rem;
	line-height: 1.5;
}

.code-container {
	background: #1e1e1e;
	border-radius: 8px;
	overflow: hidden;
	margin: 1.5rem 0;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.code-header {
	background: #2d2d2d;
	padding: 0.75rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #404040;
}

.code-language {
	background: #007BFF;
	color: white;
	padding: 0.25rem 0.75rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
}

.code-title {
	color: #e1e5e9;
	font-size: 0.875rem;
	font-weight: 500;
}

.code-container pre {
	margin: 0;
	padding: 1.5rem;
	background: transparent;
	overflow-x: auto;
}

.code-container code {
	color: #f8f8f2;
	font-family: 'Fira Code', 'SF Mono', Monaco, Inconsolata, 'Roboto Mono', Consolas, 'Courier New', monospace;
	font-size: 0.875rem;
	line-height: 1.6;
	background: transparent;
}
