*, *::before, *::after {
    box-sizing: border-box;
}
 
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
 
body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    color: #1a2230;
}
 
/* Header */
 
.header {
    display: flex;
    align-items: center;
    height: 6vh;
    min-height: 56px;
    padding: 0 1.5em;
    background: #ffffff;
    border-bottom: 1px solid #ece9e9;
}
 
.leftHeaderElements {
    margin-right: auto;
}
 
.logo {
    font-family: 'DM sans', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.01em;
    border-left: 2px solid rgb(39, 58, 224);
    padding-left: 10px;
}
 
.rightHeaderElements {
    display: flex;
    gap: 0.5em;
}

a {
  color: inherit;           /* Inherits color from the parent text */
  text-decoration: none;   /* Removes the default underline */
  cursor: inherit;          /* Optional: Removes the hand cursor icon */
}
 
.headerButtons {
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    background: none;
    border: none;
    padding: 0.5em 0.9em;
    border-radius: 8px;
    color: #4b5563;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}
 
.headerButtons:hover {
    background: #f1f3f6;
    color: #1a2230;
}
 
/* Body */
 
body {
    display: flex;
    flex-direction: column;
}
 
.bodySection {
    display: flex;
    flex-direction: column;
    min-height: 94vh;
    background-color: rgb(246, 247, 249);
    padding: 2em 3em;
}
 
.hOneHeader {
    display: flex;
    align-items: center;
    padding: 0.5em 0 1.2em;
}
 
.pageTitle {
    width: 100%;
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
    color: #101a33;
}
 
/* Stat cards */
 
.cardSection {
    display: flex;
    justify-content: flex-start;
    gap: 1.2em;
    padding: 0.5em 0 1.5em;
    flex-wrap: wrap;
}
 
.cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4em;
    height: 110px;
    width: 220px;
    background: white;
    border: 1px solid #ece9e9;
    border-radius: 16px;
    padding-left: 1.4em;
    box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 1px 3px rgba(16,24,40,.05);
}
 
.annualPayTitle, .taxRateTitle, .hourlyTitle{
    font-size: 13px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
}
 
.annualPaySubTitle,
.taxRateSubtitle,
.hourlySubTitle {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 600;
}
 
.annualPaySubTitle {
    color: #0a880a;
}
 
.taxRateSubtitle {
    color: #b42318;
}
 
.hourlySubTitle{
    color: #1d4ed8;
}

/* Overview card */
 
.overViewCardSection {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0.5em 0 1.5em;
}
 
.overViewCard {
    display: flex;
    flex-direction: column;
    min-height: 220px;
    width: 100%;
    background: white;
    border: 1px solid #ece9e9;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 1px 3px rgba(16,24,40,.05);
}
 
.overViewHeader {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 1.4rem 1.6rem 1rem;
    border-bottom: 1px solid #f1f1f1;
}
 
.overViewCardTitle {
    display: flex;
    align-items: center;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0 0 4px;
    color: #101a33;
}
 
.overViewCardSubTitle {
    font-size: 0.78rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(0, 0, 0, 0.5);
    margin: 0;
}
 
.overViewLayout {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    padding: 1.6rem;
}
 
.overViewDescription {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    line-height: 1.65;
    color: #4b5563;
    max-width: 640px;
}
 
.overViewFacts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
}
 
.fact {
    background: #fafbfc;
    border: 1px solid #f1f1f1;
    border-radius: 12px;
    padding: 0.9em 1.1em;
}
 
.factLabel {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
    margin-bottom: 0.35em;
}
 
.factValue {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #101a33;
}
 
/* Table */
 
.tableSection {
    background: white;
    border: 1px solid #ece9e9;
    border-radius: 16px;
    box-shadow: 0 1px 2px rgba(16,24,40,.04), 0 1px 3px rgba(16,24,40,.05);
    overflow: hidden;
}
 
.tableTitle {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1.2em 1.4em 0.8em;
    color: #101a33;
}
 
table {
    width: 100%;
    border-collapse: collapse;
}
 
thead th {
    text-align: left;
    font-size: 0.78rem;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
    background: #fafbfc;
    padding: 12px 24px;
    border-top: 1px solid #ece9e9;
    border-bottom: 1px solid #ece9e9;
}
 
tbody td {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    padding: 14px 24px;
    border-bottom: 1px solid #f1f1f1;
}
 
tbody tr:last-child td {
    border-bottom: none;
}
 
tbody tr:hover {
    background: #fafbfc;
}