/* Basic CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures padding/border are included in element's total width/height */
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 20px auto; /* Center the resume on the page */
    padding: 20px;
    background-color: #f4f4f4;
}

header {
    text-align: center;
    border-bottom: 2px solid #333;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

h2 {
    color: #0056b3;
    border-bottom: 1px solid #0056b3;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

h3 {
    margin-top: 15px;
    margin-bottom: 5px;
}

section {
    margin-bottom: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

ul {
    margin-left: 20px;
    list-style-type: disc;
}

ul.unstyled {
    list-style-type: none;
    margin-left: 0;
}

.job .company, .job .dates, .degree .university, .degree .dates {
    font-style: italic;
    color: #555;
    display: block;
}

a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.8rem;
    color: #777;
}

/* Print specific styles (optional but recommended) */
@media print {
    body {
        background-color: #fff;
        box-shadow: none;
    }
    /* Hides unnecessary elements when printing (e.g., if you added a sidebar or a "Download PDF" button) */
    .no-print {
        display: none;
    }
}
