﻿SingleSelectInput {
    position: relative;
    flex-grow: 1;

    .button {
        align-items: center;
        flex-grow: 1;
        background-color: #888;
        border-radius: 4px;
        margin-top: 4px;
        padding: 4px 8px;
        gap: 4px;

        &.active {
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

        .selected {
            font-weight: light;
            font-size: 18px;
        }

        .expand {
            font-size: 16px;
        }
    }

    .options {
        position: absolute;
        top: 100%;
        width: 100%;
        align-self: center;
        z-index: 1000;
        padding: 4px;
        flex-direction: column;
        background-color: #888;
        border-bottom-left-radius: 4px;
        border-bottom-right-radius: 4px;

        > label {
            font-weight: light;
            font-size: 20px;
            z-index: 1002;
            border-radius: 4px;
            padding: 2px;

            &:hover {
                background-color: darken(#888, 10%);
            }
        }
    }
}
