/* Subtle left-to-right background fade with dark blue-gray tones */
body {
    /* Gradient from #212529 (dark blue-gray) to #2c3035 (slightly lighter) */
    background: linear-gradient(to right, #373737, #535353);
    /* Ensure the background covers the entire page */
    background-size: cover;
    background-attachment: fixed; /* Keeps the gradient stable during scroll */
    min-height: 100vh; /* Full viewport height for consistent appearance */
}