:root {
	/* Jewel Tones */
	--color-primary: #f5ba00; /* Citrine Yellow - CTAs */
	--color-secondary: #01379d; /* Sapphire Blue - Headers/Borders */
	--color-tertiary: #9a0101; /* Garnet Red - Accents */

	/* Dark Mode Base */
	--color-background: #121212;
	--color-surface: #1e1e1e;
	--color-text: #e0e0e0;
	--color-subtext: #a0a0a0;

	--font-family-header: "Montserrat", sans-serif;
	--font-family-body: "Roboto", sans-serif;
	--spacing-unit: 20px;
}

html {
    font-size: 80%;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: var(--color-background);
	color: var(--color-text);
	font-family: var(--font-family-body);
	line-height: 1.4;
}

/* Modern Header - Clean and Sophisticated */
header {
	background: linear-gradient(
		180deg,
		#1a1a1a 0%,
		var(--color-background) 100%
	);
	padding: 40px 40px 20px;
	position: relative;
}

/* header::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--color-primary);
	border-radius: 2px;
} */

.header-content {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
    justify-content: center;
	align-items: center;
	gap: 10px;
}

.logo-placeholder {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-text {
    display: flex;
    flex-direction: column;
}

header h1 {
	font-family: var(--font-family-header);
	font-size: 5em;
	font-weight: 700;
    padding-top: 0.4em;
	line-height: 1;
	text-align: left;
}

header h1 .top-line {
	display: block;
	color: var(--color-subtext);
	font-size: 0.5em;
    letter-spacing: 0.2em;
	font-weight: 200;
	text-transform: uppercase;
}

header h1 .highlight {
	display: block;
	color: var(--color-primary);
	font-weight: 900;
	text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: -3px;
}

header p {
    color: var(--color-subtext);
    font-size: 1.4em;
    font-weight: 400;
    text-align: left;
    /* font-style: italic; */
}

/* Main Content */
main {
	padding: 10px 5%;
	max-width: 1200px;
	margin: 0 auto;
}

h2 {
	color: var(--color-text);
	font-family: var(--font-family-header);
	font-size: 1.8em;
	margin-bottom: 25px;
	position: relative;
	padding-left: 15px;
}

h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 70%;
	background: var(--color-primary);
	border-radius: 2px;
}

/* Form Container - Modern Card Design */
.form-container {
	background: linear-gradient(145deg, #1a1a1a 0%, var(--color-surface) 100%);
	padding: 30px;
	border-radius: 16px;
	border: 1px solid rgba(245, 186, 0, 0.1);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	max-width: 600px;
	margin: 0 auto 10px;
}

label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--color-subtext);
	font-size: 0.95em;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
	width: 100%;
	padding: 12px 14px;
	margin-bottom: 10px;
	border: 1px solid #2a2a2a;
	border-radius: 8px;
	color: var(--color-text);
	background-color: #1a1a1a;
	font-size: 1em;
	transition: all 0.3s ease;
}

input:focus {
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px rgba(245, 186, 0, 0.1);
	outline: none;
	background-color: #1e1e1e;
}

input::placeholder {
	color: #555;
}

/* Checkbox Styling */
.checkbox-group {
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px;
	background: rgba(1, 55, 157, 0.05);
	border-radius: 8px;
	border: 1px solid rgba(1, 55, 157, 0.2);
}

.checkbox-group input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin: 0;
	cursor: pointer;
	accent-color: var(--color-primary);
}

.checkbox-group label {
	margin: 0;
	color: var(--color-text);
	font-weight: 500;
	text-transform: none;
	letter-spacing: normal;
	cursor: pointer;
}

/* Modern Button */
.btn-primary {
	width: 100%;
	background: linear-gradient(135deg, var(--color-primary) 0%, #e0a800 100%);
	color: #000;
	border: none;
	font-size: 1em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	border-radius: 10px;
	padding: 14px 28px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(245, 186, 0, 0.3);
	font-family: var(--font-family-header);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(245, 186, 0, 0.5);
	background: linear-gradient(135deg, #ffc93c 0%, var(--color-primary) 100%);
}

.btn-primary:active {
	transform: translateY(0);
}

/* Styling for success/error messages added by JavaScript */
#message {
	margin-top: 20px;
	text-align: center;
	padding: 12px;
	border-radius: 8px;
	font-weight: 600;
}

.message-success {
    color: var(--color-primary);
    background-color: rgba(245, 186, 0, 0.1); /* Light Citrine background */
    border: 1px solid var(--color-primary);
}

.message-error {
    color: var(--color-tertiary);
    background-color: rgba(154, 1, 1, 0.1); /* Light Garnet background */
    border: 1px solid var(--color-tertiary);
}

/* Sponsor Section */
.sponsors-section {
	padding: 40px 5% 60px;
	background: linear-gradient(
		180deg,
		var(--color-background) 0%,
		#1a1a1a 100%
	);
	border-top: 1px solid #2a2a2a;
}

.sponsors-section h2 {
	text-align: center;
	margin-bottom: 35px;
	padding-left: 0;
    color: var(--color-text);
}

.sponsors-section h2::before {
	display: none;
}

.sponsors-section h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background: var(--color-tertiary);
	margin: 20px auto 0;
	border-radius: 2px;
}

.sponsors-grid {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 30px;
	align-items: center;
}

.sponsor-logo {
	background: #1e1e1e;
	border: 1px solid #2a2a2a;
	border-radius: 12px;
	padding: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.sponsor-logo::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(1, 55, 157, 0.05),
		rgba(245, 186, 0, 0.05)
	);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.sponsor-logo:hover {
	border-color: var(--color-tertiary);
	transform: translateY(-4px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.sponsor-logo:hover::before {
    background: linear-gradient(
        135deg,
        rgba(1, 55, 157, 0.05),
        rgba(154, 1, 1, 0.1) /* ADD: Garnet to the hover */
    );    
	opacity: 1;
}

.sponsor-logo-placeholder {
	color: var(--color-subtext);
	font-size: 0.9em;
	text-align: center;
	font-weight: 500;
	position: relative;
	z-index: 1;
}

.sponsor-logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
	.header-content {
		flex-direction: column;
		text-align: center;
	}

	header h1 {
		text-align: center;
	}

	header h1 .top-line,
	header h1 .highlight {
		margin-left: 0;
	}

	header p {
		text-align: center;
	}

	header h1 {
		font-size: 2em;
	}

	.form-container {
		padding: 30px 25px;
	}

	.sponsors-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 25px;
	}

	h2::before {
		display: none;
	}
}

/* Navigation Bar - Integrated into Header */
.nav-bar {
    max-width: 1000px;
    margin: 10px auto 0;
    padding: 0 5%;
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.nav-bar a {
    color: var(--color-subtext);
    text-decoration: none;
    padding: 12px 24px;
    font-size: 0.95em;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    position: relative;
}

.nav-bar a:hover {
    color: var(--color-primary);
    background: rgba(245, 186, 0, 0.05);
}

.nav-bar a.active {
    color: var(--color-primary);
    background: rgba(245, 186, 0, 0.1);
    font-weight: 600;
}

.nav-bar a.active::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

/* Page Title Section */
.page-title-section {
    text-align: center;
    margin: 0px auto 20px;
    max-width: 800px;
}

.page-title {
    font-family: var(--font-family-header);
    font-size: 2.2em;
    color: var(--color-text);
    margin-bottom: 20px;
    padding-left: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.page-title::before {
    display: none;
}

.page-title::after {
    display: none;
}

.page-subtitle {
    color: var(--color-subtext);
    font-size: 1.15em;
    margin-top: 0;
}

.intro-text {
    color: var(--color-subtext);
    margin-bottom: 40px;
    font-size: 1.05em;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Sponsorship Tier Cards */
.tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-bottom: 50px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.tier-card {
    background: linear-gradient(145deg, #1a1a1a 0%, var(--color-surface) 100%);
    padding: 35px 30px;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-subtext);
    opacity: 0.3;
}

.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.tier-card h3 {
    font-family: var(--font-family-header);
    font-size: 1.6em;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-price {
    font-family: var(--font-family-header);
    font-size: 2.5em;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
}

.tier-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
    min-height: 200px;
}

.tier-features li {
    padding: 10px 0;
    border-bottom: 1px dashed #333;
    font-size: 0.95em;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.tier-features li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--color-primary);
    font-size: 1.2em;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Individual Tier Styling */
.tier-pint h3, .tier-pint .tier-price { 
    color: var(--color-subtext); 
}

.tier-pint::before {
    background: var(--color-subtext);
    opacity: 0.5;
}

.tier-liter h3, .tier-liter .tier-price { 
    color: var(--color-tertiary); 
}

.tier-liter::before {
    background: var(--color-tertiary);
}

.tier-liter:hover {
    border-color: rgba(154, 1, 1, 0.3);
}

.tier-growler h3, .tier-growler .tier-price { 
    color: var(--color-secondary); 
}

.tier-growler::before {
    background: var(--color-secondary);
}

.tier-growler:hover {
    border-color: rgba(1, 55, 157, 0.3);
}

.tier-keg h3, .tier-keg .tier-price { 
    color: var(--color-primary); 
}

.tier-keg::before {
    background: var(--color-primary);
    height: 5px;
}

.tier-keg {
    border: 2px solid rgba(245, 186, 0, 0.2);
    box-shadow: 0 8px 30px rgba(245, 186, 0, 0.15), 0 0 40px rgba(245, 186, 0, 0.1);
}

.tier-keg:hover {
    border-color: rgba(245, 186, 0, 0.4);
    box-shadow: 0 12px 50px rgba(245, 186, 0, 0.25), 0 0 60px rgba(245, 186, 0, 0.15);
}

.premium-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--color-primary);
    color: #000;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(245, 186, 0, 0.4);
}

/* Tier-specific Buttons */
.btn-tier-pint {
    background: linear-gradient(135deg, var(--color-subtext) 0%, #888 100%);
    color: #000;
}

.btn-tier-pint:hover {
    background: linear-gradient(135deg, #c0c0c0 0%, var(--color-subtext) 100%);
}

.btn-tier-liter {
    background: linear-gradient(135deg, var(--color-tertiary) 0%, #b00 100%);
    color: #fff;
}

.btn-tier-liter:hover {
    background: linear-gradient(135deg, #c00 0%, var(--color-tertiary) 100%);
}

.btn-tier-growler {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #0147bd 100%);
    color: #fff;
}

.btn-tier-growler:hover {
    background: linear-gradient(135deg, #0157dd 0%, var(--color-secondary) 100%);
}

.btn-tier-keg {
    background: linear-gradient(135deg, var(--color-primary) 0%, #e0a800 100%);
    box-shadow: 0 4px 20px rgba(245, 186, 0, 0.4);
}

.btn-tier-keg:hover {
    box-shadow: 0 6px 30px rgba(245, 186, 0, 0.6);
}

/* Contact Section */
.contact-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background: linear-gradient(145deg, #1a1a1a 0%, var(--color-surface) 100%);
    border-radius: 16px;
    border: 1px solid rgba(245, 186, 0, 0.1);
}

.contact-text {
    color: var(--color-text);
    font-size: 1.2em;
    line-height: 1.6;
}

.contact-text a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #ffc93c;
    text-decoration: underline;
}

/* Responsive adjustments for sponsor page */
@media (max-width: 1200px) {
    .tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .nav-bar a {
        text-align: center;
    }
    
    .page-title {
        font-size: 1.8em;
    }
    
    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .car-quantity-selector,
    .delivery-options {
        flex-direction: column;
    }
}

/* Registration-specific styles */
.registration-container {
    max-width: 700px;
    margin: 0 auto;
}

.pricing-summary {
    background: linear-gradient(145deg, #1a1a1a 0%, var(--color-surface) 100%);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(245, 186, 0, 0.2);
    margin-bottom: 30px;
    text-align: center;
}

.pricing-summary h3 {
    color: var(--color-primary);
    font-family: var(--font-family-header);
    font-size: 1.3em;
    margin-bottom: 10px;
}

.pricing-summary p {
    color: var(--color-subtext);
    margin: 5px 0;
}

.price-breakdown {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px dashed #333;
    margin-top: 15px;
}

.price-breakdown .label {
    color: var(--color-subtext);
}

.price-breakdown .amount {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1.1em;
}

.total-price {
    font-size: 1.5em !important;
    color: var(--color-primary) !important;
    font-family: var(--font-family-header);
}

.form-section {
    margin-bottom: 35px;
}

.form-section-title {
    color: var(--color-text);
    font-family: var(--font-family-header);
    font-size: 1.3em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-row.single {
    grid-template-columns: 1fr;
}

.input-group {
    margin-bottom: 20px;
}

.car-quantity-selector {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.quantity-option {
    flex: 1;
    background: var(--color-surface);
    border: 2px solid #2a2a2a;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-option input[type="radio"] {
    display: none;
}

.quantity-option:hover {
    border-color: rgba(245, 186, 0, 0.3);
}

.quantity-option.selected {
    border-color: var(--color-primary);
    background: rgba(245, 186, 0, 0.1);
}

.quantity-option .number {
    font-size: 2em;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-family-header);
}

.quantity-option .label {
    color: var(--color-subtext);
    font-size: 0.9em;
    margin-top: 5px;
}

.car-names-container {
    display: none;
    margin-top: 20px;
}

.car-names-container.visible {
    display: block;
}

.car-name-input {
    margin-bottom: 15px;
}

.car-name-input label {
    color: var(--color-subtext);
    font-size: 0.9em;
    margin-bottom: 5px;
    display: block;
}

.delivery-options {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.delivery-option {
    flex: 1;
    background: var(--color-surface);
    border: 2px solid #2a2a2a;
    border-radius: 10px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delivery-option input[type="radio"] {
    display: none;
}

.delivery-option:hover {
    border-color: rgba(245, 186, 0, 0.3);
}

.delivery-option.selected {
    border-color: var(--color-primary);
    background: rgba(245, 186, 0, 0.1);
}

.delivery-option .title {
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 5px;
    font-size: 1.1em;
}

.delivery-option .subtitle {
    color: var(--color-subtext);
    font-size: 0.9em;
}

.delivery-option .fee {
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 8px;
}

.address-fields {
    display: none;
    margin-top: 20px;
}

.address-fields.visible {
    display: block;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(1, 55, 157, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(1, 55, 157, 0.2);
    margin-bottom: 20px;
}

.checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--color-primary);
}

.checkbox-container label {
    margin: 0;
    color: var(--color-text);
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    cursor: pointer;
}

.form-note {
    color: var(--color-subtext);
    font-size: 0.9em;
    font-style: italic;
    margin-top: 5px;
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.site-footer {
    background: var(--color-background);
    border-top: 1px solid #2a2a2a;
    margin-top: 60px;
    padding: 30px 5% 20px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-nav a {
    color: var(--color-subtext);
    text-decoration: none;
    font-size: 0.85em;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-primary);
}

.footer-legal p {
    color: var(--color-subtext);
    font-size: 0.75em;
    margin: 0;
}
/* ========================================
   ADMIN PANEL STYLES
   ======================================== */

/* Admin Container */
.admin-container { 
    max-width: 1600px; 
    margin: 40px auto; 
    padding: 0 20px; 
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.admin-header h2 {
    margin: 0;
    padding-left: 0;
}

.admin-header h2::before {
    display: none;
}

.admin-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Summary Stats */
.summary-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: linear-gradient(145deg, #1a1a1a 0%, var(--color-surface) 100%);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

.stat-label {
    color: var(--color-subtext);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.stat-value {
    font-family: var(--font-family-header);
    font-size: 2.2em;
    font-weight: 700;
    color: var(--color-primary);
}

/* Secondary Button */
.btn-secondary {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #0147bd 100%);
    color: #fff;
    border: none;
    font-size: 0.95em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 8px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    font-family: var(--font-family-header);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 55, 157, 0.4);
    background: linear-gradient(135deg, #0157dd 0%, var(--color-secondary) 100%);
}

.btn-secondary:active {
    transform: translateY(0);
}

/* Table Container */
.table-container {
    background: linear-gradient(145deg, #1a1a1a 0%, var(--color-surface) 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    overflow-x: auto;
}

.data-table { 
    width: 100%; 
    border-collapse: collapse; 
}

.data-table th, .data-table td { 
    border-bottom: 1px solid #333; 
    padding: 14px 10px; 
    text-align: left; 
    font-size: 0.9em;
}

.data-table th { 
    background-color: transparent;
    color: var(--color-subtext); 
    text-transform: uppercase; 
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 0.8em;
    border-bottom: 2px solid var(--color-primary);
    white-space: nowrap;
}

.data-table tbody tr {
    transition: background-color 0.2s ease;
}

.data-table tbody tr:hover { 
    background-color: rgba(245, 186, 0, 0.05); 
}

.data-table tr:last-child td {
    border-bottom: none;
}

/* Payment Status Badges */
.payment-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
}

.payment-completed {
    background: rgba(0, 200, 0, 0.2);
    color: #00ff00;
}

.payment-pending {
    background: rgba(255, 165, 0, 0.2);
    color: #ffa500;
}

/* Delivery Status Dropdown */
.delivery-select {
    background: var(--color-surface);
    color: var(--color-text);
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 0.85em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.delivery-select:hover {
    border-color: var(--color-primary);
}

.delivery-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(245, 186, 0, 0.1);
}

.delivery-pending { color: var(--color-subtext); }
.delivery-shipped { color: var(--color-primary); }
.delivery-picked-up { color: var(--color-primary); }

/* Address Cell */
.address-cell {
    max-width: 200px;
    font-size: 0.85em;
    line-height: 1.4;
}

/* Loading/Empty States */
.loading-message, .empty-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-subtext);
    font-size: 1.1em;
}

.loading-message::before {
    content: "⏳";
    display: block;
    font-size: 3em;
    margin-bottom: 20px;
}

.empty-message::before {
    content: "📭";
    display: block;
    font-size: 3em;
    margin-bottom: 20px;
}

/* Admin Responsive */
@media (max-width: 768px) {
    .admin-container {
        max-width: 100%;
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .admin-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .admin-actions button,
    .admin-actions a {
        width: 100%;
    }
    
    .summary-stats {
        grid-template-columns: 1fr;
    }
    
    .table-container {
        padding: 20px 10px;
    }
    
    .data-table th, .data-table td {
        padding: 10px 6px;
        font-size: 0.8em;
    }
}