* {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    text-align: center;
    margin: 0;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #204e62;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.map {
    border: 1px solid white;
    padding-top: 0.15rem;
    width: 2.5rem;
    height: 2.5rem;
}

.map:hover {
    background-color: #c5c8ca5a;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-content {
    background-color: white;
    padding: 1rem;
    border-radius: 0.3rem;
    box-shadow: 0px 0px 10px #484747;
    max-width: 90vw;
    max-height: 90vh;
    overflow: auto;
}

.close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer;
    font-size: 3rem;
}

main {
    flex: 1;
}

h1 {
    font-size: 2rem;
    margin-top: 2.5rem;
    color: #204e62
}

#table {
    margin: 2rem 2rem 4rem 2rem;
}

#search {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    width: 90%;
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
    border: 1px solid #ddd;
}

#filterTitle {
    margin-bottom: 1rem;
    color: #377e9c
}

.item {
    padding: 0.75rem;
    border-bottom: 1px solid #ccc;
}

.title {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background-color: #f2f2f2;
    margin-bottom: 1.25rem;
    color: #204e62;
}

.info {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    width: 100%;
    text-align: left;
    color: #377e9c
}

footer {
    background-color: #204e62;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    bottom: 0;
    width: 100%;
    line-height: 1rem;
}

#credits {
    text-align: left;
    font-size: 0.75rem;
}