* {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
}

body {
    position: relative;
    min-height: 100%;
    font-family: 'Archivo', sans-serif;
    color: black;
    background-color: #f3f3f3;
    padding: 2rem;
    height: 100vmin;
}

/* Header Container: Company logo and info */
.header {
    display: flex;
    justify-content: space-between;
}

.header__logo {
    position: relative;
    display: flex; /* Enable flexbox */
    justify-content: center; /* Horizontally center the image */
    align-items: center; /* Vertically center the image */
    max-height: 9rem; /* Set a reasonable max height */
    width: auto; /* Allow width to grow proportionally */
    border-radius: 10%;
    border: 1px solid #b8b8b8;
    overflow: hidden;
    background-color: white;
}

.header__logo-image {
    height: 100%; /* Ensure the image takes the full height */
    width: auto; /* Let the width adjust proportionally */
    object-fit: contain; /* Ensure the aspect ratio is preserved */
}

.header__info {
    max-width: 30rem;
    text-align: right;
    font-weight: bold;
}

.header__title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.header__company {
    font-size: 1.4rem;
}

.header__disclaimer {
    font-size: 1.4rem;
    margin-top: 3rem;
    text-align: left;
}

.highlight {
    position: relative;
    border-radius: 1em 0 1em 0;
    /* YELLOW option: */
    /* background-image: linear-gradient(
        -100deg,
        rgba(255, 251, 0, 0.3),
        rgba(255, 251, 0, 0.7) 95%,
        rgba(255, 251, 0, 0.1)
    ); */
    /* Gray option: */
    background-image: linear-gradient(
        -100deg,
        rgba(176, 176, 179, 0.3),
        rgba(176, 176, 179, 0.7) 95%,
        rgba(176, 176, 179, 0.1)
    );
    padding: 0.2em 0.1em;
}

/* Search bar */
.search {
    display: flex;
    border-radius: 0.3rem;
    border-style: solid;
    border-color: black;
    border-width: 2px;
    background-color: white;
    max-width: 35%;
}

.search__input {
    flex: 1;
    border: none;
    font-family: inherit;
    font-size: 1.5rem;
    color: black;
    background: transparent;
    padding: 0.7rem 0.1rem;
    padding-left: 60px;
    background-image: url('img/magnifying-glass.svg');
    background-size: 1.8rem;
    background-position: 15px;
    background-repeat: no-repeat;
}

.search__input:focus {
    outline: none;
}

.search__input::placeholder {
    color: black;
}

/* Table info */
table {
    table-layout: fixed;
    width: 100%;
    margin-top: 2rem;
    border-collapse: collapse;
}

thead {
    background-color: #b8b8b8;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}

th {
    padding: 0.5rem;
    text-align: left;
    font-family: inherit;
    font-size: 1.2rem;
}

thead th:nth-child(1) {
    width: 10%;
}

thead th:nth-child(2) {
    width: 30%;
}

thead th:nth-child(3) {
    width: 30%;
}

thead th:nth-child(4) {
    width: 30%;
}

.table__row {
    border-bottom: 2px solid #b8b8b8;
}

td {
    font-family: inherit;
    font-size: 1rem;
    padding: 0.7rem;
}

tbody::after {
    height: 6rem;
    content: '';
    display: table-row;
}

/* Footer */
footer {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 1.2rem 2rem;
    gap: 1rem;
    font-family: inherit;
    font-size: 1.25rem;
    color: white;
    background-color: #0b2030;
}

.link__ziptility {
    color: white;
    text-decoration: none;
}

.footer__logo {
    width: 40px;
    border: 1px solid darkslategray;
    border-radius: 8%;
    overflow: hidden;
}
