.vertical-container {
    display: flex;
    flex-direction: column;
}

.line-container {
    display: flex;
    align-items: center;
}

.vertical-container > div:not(:last-child) {
    margin-bottom: 8px;
}

.select-container {
    display: flex;
    align-items: center;
}

.select-container > div:first-child {
    margin-right: 10px;
}

.custom-select {
    position: relative;
    font-family: Arial;
}

.custom-select select {
    display: none; /*hide original SELECT element:*/
}

.select-selected {
    background-color: #004C46;
    padding: 8px 16px;
    border-radius: 4px;
}

/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}

/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;

}

/*style items (options):*/
.select-items {
    position: absolute;
    background-color: #004C46;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/*hide the items when the select box is closed:*/
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.5);
}

.search_bar {
    width: 100%;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding: 12px 20px 12px 20px;
}
header {
    font-weight: bold;
    font-size: 24px;
    color: #004C46;

}
body {
    background-color: #F5F3E7;
}
select {
    background-color: #F5F3E7;
    border: 1px solid black;
    border-radius: 8px;;
}

input[type=text] {
    background-color: #F5F3E7;
    width: auto;
    border: none;
    border-bottom: 2px solid #004C46;
    padding: 8px 0;
    color: #000;
    font-size: 14px;
}

.search_bar:focus {
    width: 100%;
}

th {
    border: 2px solid #004C46;
    background-color: #004C46;
    color: #F5F3E7;
    padding: 8px;
    text-align: left;
    word-wrap: break-word;
}

td {
    border: 2px solid #004C46;
    background-color: #F5F3E7;
    color: black;
    padding: 8px;
    text-align: left;
    word-wrap: break-word;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    overflow: hidden;
    width: 100%;
}

.search_button {
    display: inline-block;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    margin: 8px;
    color: white;
    background-color: #004C46;
    border: none;
    border-radius: 15px;
}

.search_button:active {
  background-color: #3e8e41;
}

.option {
    margin-bottom: 5px;
}

#attribute-select {
    border: 1px solid #ccc;
    padding: 10px;
    width: auto;
    max-width: 500px;
}
