/* static/css/global.css */
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5; /* A light grey similar to Perplexity */
    color: #1c1e21; /* Dark grey for text */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Basic link styling (optional) */
a {
    color: #1877f2; /* A blue often used for links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}