@charset "UTF-8";

/* =====================================================
   Design System Variables
===================================================== */
:root {
	--bg-main: #f5f6f8;
	--text-main: #1c1c1c;
	--text-muted: #666;
	--card-bg: #ffffff;
	--border-soft: #e4e8f0;

	--gold-light: #E8D27C;
	--gold-main: #D4AF37;
	--gold-dark: #B68D2C;

	--shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.05);
}

/* =====================================================
   Base Layout
===================================================== */
html, body {
	margin: 0;
	padding: 0;
	background: var(--bg-main);
	color: var(--text-main);
	font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

body {
	padding: 30px;
}

/* =====================================================
   Typography
===================================================== */
p {
	margin: 1em 0;
}

h1, h2, h3 {
	font-weight: 600;
	margin-bottom: 0.5em;
}

/* =====================================================
   Tables
===================================================== */
.table {
	width: 100%;
	border-collapse: collapse;
	background: var(--card-bg);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-soft);
}

/* Table Header (Gold Accent) */
.table_first_row {
	background: linear-gradient(
		135deg,
		var(--gold-light),
		var(--gold-main),
		var(--gold-dark)
	);
	color: #1c1c1c;
	font-weight: 600;
	font-size: 14px;
	padding: 14px;
}

/* Table Cells */
.table_column_odd,
.table_column_even {
	font-size: 14px;
	padding: 12px 14px;
	border-bottom: 1px solid var(--border-soft);
}

/* Alternating Rows */
.table tr:nth-child(even) {
	background-color: #fafbfc;
}

/* Hover Effect */
.table tr:hover {
	background-color: #f1f3f6;
	transition: background 0.2s ease;
}

/* =====================================================
   Links
===================================================== */
a {
	text-decoration: none;
	transition: all 0.2s ease;
}

a.menu {
	font-size: 14px;
	color: var(--gold-dark);
	font-weight: 500;
}

a.menu:hover {
	color: var(--gold-main);
}

/* =====================================================
   Buttons (Global Style Addition)
===================================================== */
.button {
	border: none;
	padding: 10px 22px;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	letter-spacing: 0.4px;
	background: linear-gradient(
		135deg,
		var(--gold-light),
		var(--gold-dark)
	);
	color: #1c1c1c;
	transition: all 0.25s ease;
	box-shadow: 0 4px 12px rgba(182, 141, 44, 0.3);
}

.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(182, 141, 44, 0.4);
}

/* =====================================================
   Error Message
===================================================== */
.error {
	margin-top: 80px;
	text-align: center;
	color: #b00020;
	font-weight: 600;
	font-size: 16px;
}

/* =====================================================
   Footer
===================================================== */
#labfooter {
	text-align: center;
	margin-top: 60px;
	color: var(--text-muted);
	font-size: 13px;
}