body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background-color: #f4f4f4;
}

.resume {
    max-width: 8in;
    margin: 1px auto;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

section {
    margin-bottom: 5px;
}

.contact-info, .summary, .professional-experience, .education, .projects, .technical-skills, .certifications, .awards {
    padding: 0px;
    padding-bottom: 10px;
}

.contact-info h1, .summary h2, .professional-experience h2, .education h2, .projects h2, .technical-skills h2, .certifications h2, .awards h2 {
    color: #333333;
    padding-top: 10px;
    border-bottom: 1px solid #dedede;
    padding-bottom: 5px;
}

.contact-info p, .summary p, .technical-skills ul, .professional-experience div, .education div, .certifications ul, .awards ul {
    color: #333;
    margin-top: 5px;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

ul li {
    margin-bottom: 5px;
}



/* Contact Info */
.contact-info {
    padding: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    background-color: #5b8bc1;
    top: 0;
    left: 0;
    right: 0;
}


.contact-info h1 {
    color: white;
}

.contact-info h1, .contact-info p {
    margin: 5px 0; /* Adjust the margin for better spacing */
    color: rgb(234, 234, 234);
}

.summary p {
    margin-top: 20px;
}

.technical-skills, .professional-experience, .summary, .awards, .education {
    padding-left: 50px;
    padding-right: 50px;
}

/* Technical Skills */
.technical-skills {
    background-color: #fff;
}

.technical-skills h2 {
    color: #333;
    font-size: 24px;
    border-bottom: 2px solid #dedede;
    padding-bottom: 0px;
}

.technical-skills p {
    color: #333;
    margin-top: 0px;
}

.technical-skills p strong {
    font-weight: bold;
    color: #000000;
    margin-right: 0px;
}

/* Professional  Experience*/
.professional-experience {
    background-color: #fff;
}

.professional-experience h2 {
    color: #000000;
    font-size: 24px;
    border-bottom: 2px solid #dedede;

    padding-bottom: 10px;
}

.professional-experience .job {
    margin-bottom: 20px;
}

.professional-experience .job p {
    color: #333;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 0;
}

.professional-experience .job p strong {
    font-weight: bold;
    color: #000000;
}

.professional-experience .job-details {
    display: flex;
    justify-content: space-between; /* This spreads out the children elements */
    align-items: baseline; /* Aligns items along the baseline */
    margin-top: 0px;
}

.company-location {
    /* This will take the needed space and the date will take the rest */
    flex: 1;
    margin-right: 0.5em; /* Ensures a little space between the company-location and the date */
}

.date {
    flex: 0; /* This ensures the date does not grow and stays right-aligned */
    white-space: nowrap; /* Prevents wrapping and keeps the date on one line */
}

.professional-experience ul {
    list-style-type: disc;
    margin-left: 0px;
}

.professional-experience li {
    color: #333;
    line-height: 1.6;
}
/* End professional Experience */


/* Education */
.education h2 {
    color: #333;
    font-size: 24px;
    border-bottom: 2px solid #dedede;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.education .education-entry {
    margin-bottom: 20px;
}

.education .education-entry p {
    margin: 0;
    /* padding-bottom: 5px; */
    color: #333;
}

.education .education-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.education .institution {
    color: #333;
    flex: 1;
}

.education .date {
    color: #333;
    flex: 0;
    text-align: right;
}
/* End of Education */

/* Awards */
.awards h2 {
    color: #333;
    font-size: 24px;
    border-bottom: 2px solid #dedede;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.awards .award-entry {
    margin-bottom: 20px;
}

.awards .award-entry p {
    margin: 0;
    padding-bottom: 5px;
    color: #333;
}

.awards .award-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.awards .award-description {
    color: #333;
    flex: 1; /* Allows the description to grow and shrink as needed */
    min-width: 0; /* Ensures the text will not force the container to grow */
}

.awards .award-date {
    color: #333;
    white-space: nowrap; /* Prevents the date from wrapping */
    padding-left: 16px; /* Ensures a gap between the description and the date */
}


/* Adjust the margins and padding to match the rest of your resume sections */

/* End of Aards */