:root {
    --primary-color: #007bff;
    --background-color: #f8f9fa;
    --container-bg: #ffffff;
    --font-color: #212529;
    --header-bg: #343a40;
    --header-color: #ffffff;
    --button-bg: #007bff;
    --button-color: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.05);
    --border-color: #dee2e6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: var(--background-color);
    color: var(--font-color);
    line-height: 1.6;
}

header {
    background-color: var(--header-bg);
    color: var(--header-color);
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1 {
    margin: 0;
    font-size: 2rem;
}

main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* The rest of the styles are inside the component */
