/* Custom CSS styles for Financial Times look */

/* Use 'Financier Display' and 'Metric' fonts if available, fallback to Georgia and Arial */
body {
    font-family: 'Financier Display', 'Metric', Georgia, 'Times New Roman', Times, serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fff1e5; /* Financial Times light peach background */
    color: #33302e; /* Financial Times dark text */
}

/* Custom scrollbar for a cleaner look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #fff1e5;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: #d2b48c;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #c2a477;
}

/* Additional styles could go here if needed,
   but Tailwind handles most of the layout and components. */
