:root {
    --primary-dark: #0B162C;
    --accent-gold: #D4AF37;
    --text-dark: #333333;
    --bg-light: #F4F6F9;
    --white: #FFFFFF;
    --success-green: #28a745;
    --danger-red: #dc3545;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}
h1, h2, h3 { font-family: 'Playfair Display', serif; }
.back-link { color: #888; text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.back-link:hover { color: var(--primary-dark); }
/* Add your common button (.btn), table, and alert styles here! */