button.action
{
	display: inline-flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	padding: 0px;
	cursor: pointer;
	margin: 3px;
}

.fixed-button-container
{
	border: 1px solid #aaaaaa;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	border-bottom: 0 none;
	position: fixed;
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
	padding: 3px 3px;
	background-color: rgb(232,232,232,0.4);
	opacity: 80%;
	z-index: 999;
	white-space: nowrap;
	display: inline-flex;
	flex-wrap: nowrap;
}

.fixed-button
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 3px;
	cursor: pointer;
	margin: 3px;
	font-size: 18px;
}

.fixed-button i
{
	margin-right: 5px;
}

button
{
  padding: 0.75rem;
  background-color: #676a6e;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover
{
  background-color: #3a3e42;
}

button.fixed-button
{
	background-color: #eb1e26;
}

button.fixed-button:hover
{
	background-color: #b6292e;
}

a.button
{
	background-color: #676a6e;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-decoration: none;
}

a.fixed-button
{
	background-color: #eb1e26;
}

.wide-button
{
	width: 100%;
}

/*specific liv style overrides*/

/* Make the clear button visible and styled like your red buttons */
.select2-container .select2-selection--single .select2-selection__clear {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    background-color: #eb1e26;   /* Your button red */
    color: #ffffff !important;
    border-radius: 4px;

    position: absolute;
    right: 28px;                 /* Adjust so it doesn’t overlap arrow */
    top: 50%;
    transform: translateY(-50%);

    cursor: pointer;
    z-index: 10;
    padding: 0;
    margin: 0;
    border: none;
}

/* Ensure the × inside the button is centered */
.select2-container .select2-selection--single .select2-selection__clear span {
    line-height: 1;
    font-size: 16px;
    color: #fff !important;
}

/* Push the rendered text left so it doesn’t sit under the button */
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-right: 35px !important;
}
