.btn{
    @apply h-[44px] px-6 md:px-8 inline-flex items-center max-w-full cursor-pointer font-main font-medium;
}

.btn-main{
    @apply bg-primary100 text-white rounded-md font-main font-normal;
}

.btn-primary, .btn-add{
    @apply bg-primary200 text-white rounded-md text-center;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.10);
}

.btn-add, .btn-cancel{
    @apply rounded-full text-sm px-4;
}

.btn-secondary{
    @apply bg-secondary text-black rounded-md text-center;
}

.btn-remove{
    @apply bg-red-500 text-white rounded-md text-center;
}

.btn-optional, .btn-cancel{
    @apply bg-optional text-black;
}

.btn-optional{
    @apply rounded-md;
}