* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

.form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    margin-top: 15px;
}

select,
.select-box,
button {
    width: 220px;
    height: 38px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
}

select {
    padding: 0 10px;
}

button {
    cursor: pointer;
    background: #e9e9e9;
    transition: 0.2s;
}

button:hover {
    background: #dcdcdc;
}

/* ---------- Multi Select ---------- */

.multi-select {
    position: relative;
    width: 220px;
}

.select-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    cursor: pointer;
}

.dropdown {
    display: none;
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .15);
    max-height: 180px;
    overflow-y: auto;
    z-index: 100;
}

.dropdown.show {
    display: block;
}

.dropdown label {
    display: block;
    padding: 8px 10px;
    cursor: pointer;
}

.dropdown label:hover {
    background: #f2f2f2;
}

.dropdown input {
    margin-right: 8px;
}

#search {
    width: calc(100% - 20px);
    margin: 8px 10px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

.instructions {
    width: fit-content;
    margin: 15px auto 20px auto;
    padding-left: 20px;
    font-size: 15px;
}

.instructions li {
    margin: 5px 0;
}