.selectbox-container{
    @apply w-full relative;
    .selectbox {
        @apply h-12 px-4 text-sm leading-loose flex-shrink placeholder-base-content placeholder-opacity-50;
        @apply border border-base-25 bg-transparent rounded-lg text-base flex items-center justify-between;
    }
    .selectbox-ul {
        @apply mt-2 h-28 absolute w-full rounded-lg bg-white shadow border border-base-25; 
        @apply overflow-y-auto;
        li {
            @apply m-2 p-1 cursor-pointer rounded;
            &:hover {
                @apply bg-primary text-white;
            }
        }
    }
}
