/* Base Styles */
* {
  font-family: Helvetica, Arial, sans-serif;
  box-sizing: border-box;
}

body {
  background-color: #fafafa;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
  color: #333;
}

/* Typography */
h1 {
  font-size: 44pt;
  margin: 0;
  font-weight: bold;
}

h2 {
  font-size: 11pt;
  background-color: lightgrey;
  font-weight: bold;
  text-align: center;
  width: 100%;
  padding: 8px;
  margin: 20px 0 10px 0;
}

h3 {
  font-size: 10pt;
  margin: 0 0 5px 0;
  font-weight: bold;
}

h4 {
  font-size: 9pt;
  margin: 5px 0;
  font-style: italic;
}

p, li {
  font-size: 10pt;
}

/* Links */
a {
  color: #3B4D65;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Lists */
ul {
  margin-top: 2px;
}

li {
  padding-bottom: 2px;
}

/* Layout Components */
main {
  max-width: 800px;
  margin: 0 auto;
}

.personal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-info {
  text-align: right;
  font-size: 8pt;
}

.contact-info div {
  margin-bottom: 2px;
}

.executive-summary p {
  font-size: 11pt;
  padding: 5px 5px 5px 30px;
}

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

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 5px;
}

.job-dates-location {
  text-align: right;
  font-size: 8pt;
}

.company {
  font-weight: bold;
}

.company-note {
  font-size: 9pt;
}

.dates {
  font-style: italic;
}

.linkedin-link {
  margin-top: 20px;
  font-size: 8pt;
}

/* Interactive Elements */
.plusminus {
  display: block;
  cursor: pointer;
  font-size: 8pt;
}

.oldduties {
  display: none;
}

.odpad {
  font-size: 8pt;
}

/* Footer */
footer {
  margin-top: 30px;
  text-align: right;
}

.last-updated {
  color: #eeeeee;
  font-size: 4pt;
}

.validation-badge {
  margin-top: 5px;
}

/* Images */
img {
  border: 0;
}

/* Print Styles */
@media print {
  .no-print, .no-print * {
    display: none !important;
  }
  
  body {
    background-color: white;
    padding: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .personal-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .contact-info {
    text-align: center;
    margin-top: 15px;
  }
  
  .job-header {
    flex-direction: column;
  }
  
  .job-dates-location {
    text-align: left;
    margin-top: 5px;
  }
  
  body {
    padding: 10px;
  }
}
