body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: black;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
}

input.form-control {
    font-size: 1.2rem;
}

select.form-control {
    font-size: 1.2rem;
}

.ticket-details a.button {
    display: inline-block;
    background-color: black;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.button-40, .button-20 {
    margin-bottom: 10px;
    background-color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 1.5rem;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    box-sizing: border-box;
    flex: 0 0 auto;
    font-family: "Inter var",ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-weight: 600;
    line-height: 1.5rem;
    text-decoration-thickness: auto;
    transition-duration: .2s;
    transition-property: background-color,border-color,color,fill,stroke;
    transition-timing-function: cubic-bezier(.4, 0, 0.2, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100%;
    color: white;
}

    .button-40:disabled {
        background-color: #808080; /* Disabled background color (gray) */
        color: #ffffff; /* Disabled text color */
        cursor: not-allowed; /* Not-allowed cursor */
        opacity: 0.6; /* Slightly transparent to indicate disabled state */
    }

    .button-40:not(:disabled):hover {
        background-color: #374151;
        color: white;
    }

    .button-40:focus {
        box-shadow: none;
        outline: 2px solid transparent;
        outline-offset: 20px;
    }

    .button-20 {
        background-color: white; /* Button background color */
        color: black; /* Button text color */
        border: 1.5px solid black; /* Solid black border, 2px wide */
        transition: background-color 0.3s ease; /* Smooth transition for background change */
    }

    .button-20:hover {
        background-color: black; /* Button background color on hover */
        color: white; /* Button text color on hover */
    }

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #28a745;
}

input:focus + .slider {
    box-shadow: 0 0 1px #28a745;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

    @media (min-width: 768px) {
        .button-40 {
        padding: .75rem 1.5rem;
    }
}