/* General Styles */
body {
    font-family: "Verdana", sans-serif; 
    line-height: 1.6; 
    color: #333; 
    margin: 0;
    padding: 10px;
    background-color: #f4f4f4;
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 20px;
    background-color: #e0f2f7; /* Light Blue background */
    padding: 10px; 
    border: 2px solid black; /* Black border */
}

header h1 {
    font-size: 28px;
    margin-bottom: 5px;
}

header h2 {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    color: #666; 
}

header p {
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}

/* Section Styles */
section {
    margin-bottom: 30px;
}

section h2 {
    font-size: 18px;
    background-color: #e0f2f7; /* Light Blue background for section titles */
    padding: 10px 15px; /* Add some padding to section titles */
    border: 0px solid black; /* Black border for section titles */
    margin-bottom: 15px;
}

/* List Styles */
ul {
    list-style: none; 
    padding: 0;
    margin-left: 20px;
}

li {
    margin-bottom: 10px; 
}

/* Job Entry Styles */
.job-entry {
    margin-bottom: 20px;
}

.job-title {
    font-weight: bold;
}

.company-location {
    font-style: italic;
    color: #555;
}

