﻿/* Base button styles */
.customHoverButtonRectangular {
    appearance: none;
    background-color: #3B3B3B;
    border: 0.125em solid #3B3B3B;
    border-radius: 0.9375em;
    box-sizing: border-box;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-family: Roobert,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    min-height: 3.75em;
    min-width: 0;
    outline: none;
    padding: 1em 2.3em;
    text-align: center;
    text-decoration: none;
    transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: transform;
}

    /* Disabled state */
    .customHoverButtonRectangular:disabled {
        pointer-events: none;
    }

    /* Service enabled state - Now transparent */
    .customHoverButtonRectangular.service-enabled {
        background-color: transparent;
        border-color: #3B3B3B;
        color: #3B3B3B;
    }

        .customHoverButtonRectangular.service-enabled:hover {
            color: #1A1A1A;
            background-color: transparent;
            box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
            transform: translateY(-2px);
        }

    /* Service disabled state - Now dark with grey hover */
    .customHoverButtonRectangular.service-disabled {
        background-color: #3B3B3B;
        border-color: #3B3B3B;
        color: #ffffff;
    }

        .customHoverButtonRectangular.service-disabled:hover {
            color: #ffffff;
            background-color: #808080;
            border-color: #808080;
            box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
            transform: translateY(-2px);
        }

    .customHoverButtonRectangular:active {
        box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
        transform: translateY(-2px);
    }
