html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}


/* Make Kendo "solid primary" buttons green (Bootstrap-like success) */
.k-button.k-button-solid-primary,
.k-button.k-button-solid-primary:link,
.k-button.k-button-solid-primary:visited {
    /* optional: set theme variable if used by your Kendo version */
    --kendo-color-primary: #198754;
    background-color: #198754;
    border-color: #198754;
    color: #fff;
}

    .k-button.k-button-solid-primary:hover,
    .k-button.k-button-solid-primary.k-hover {
        background-color: #157347;
        border-color: #146c43;
        color: #fff;
    }

    .k-button.k-button-solid-primary:active,
    .k-button.k-button-solid-primary.k-active {
        background-color: #146c43;
        border-color: #146c43;
        color: #fff;
    }

    .k-button.k-button-solid-primary:focus {
        box-shadow: 0 0 0 .25rem rgba(25,135,84,.25);
    }

div[style*="display: grid"] > div:nth-child(odd) {
    background-color: #f2f2f2; /* Light gray for odd rows */
}

div[style*="display: grid"] > div:nth-child(even) {
    background-color: #ffffff; /* White for even rows */
}
