:root {
    --embed-menu-border: #888;
    --embed-menu-accent: #b22222;
    --embed-menu-text: #222;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 14px;
    color: var(--embed-menu-text);
    background: #fff;
}

#content {
    background: #fff;
}

#embed-menu {
    padding: 0.2rem 1rem;
    box-sizing: border-box;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

#embed-menu-form {
    width: 100%;
}

.embed-menu-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.embed-menu-field {
    flex: 1 1 170px;
    min-width: 170px;
}

.embed-menu-select,
.embed-menu-button {
    width: 100%;
    height: 48px;
    padding: 0 18px;
    border: 2px solid var(--embed-menu-border);
    border-radius: 999px;
    font-size: 14px;
    color: var(--embed-menu-text);
    background: #fff;
    box-sizing: border-box;
}

.embed-menu-select {
    appearance: none;
    background-image: url("/used/images/arrow-down.svg");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 12px;
    padding-right: 40px;
}

.embed-menu-select:focus,
.embed-menu-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(178, 34, 34, 0.2);
}

.embed-menu-button {
    background: var(--embed-menu-accent);
    border-color: var(--embed-menu-accent);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.embed-menu-button:disabled {
    opacity: 0.6;
    cursor: default;
}

@media (max-width: 420px) {
    #menu-fuel,
    #menu-transmission {
        display: none;
    }
}
