.ohio-button-wrapper {
    display: flex;
    width: 100%;
}

.ohio-button-wrapper.justify-content-start {
    justify-content: flex-start;
}

.ohio-button-wrapper.justify-content-center {
    justify-content: center;
}

.ohio-button-wrapper.justify-content-end {
    justify-content: flex-end;
}

.ohio-button {
    display: inline-block;
    border: none;
    border-radius: 12px;
    background: #e9ecf0;
    color: #000000;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.65rem 1.8rem;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    cursor: pointer;
}

.ohio-button:hover,
.ohio-button:focus {
    background: #942ABC;
    color: #ffffff;
}

.ohio-button.is-active {
    background: #1D3969;
    color: #ffffff;
}

.ohio-button.is-active:hover,
.ohio-button.is-active:focus {
    background: #942ABC;
    color: #ffffff;
}

.ohio-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(29, 57, 105, 0.25);
}

.ohio-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
