﻿html, body {
    font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", "sans-serif", "-apple-system", "BlinkMacSystemFont";
}

/*Style definitions for .razor files in /Shared/Chunks folder (it was so little thats why it's placed in here)*/
/*UBIKIcon.razor styles*/
.img-overlay-wrap {
    position: relative;
    display: inline-block;
    transition: transform 150ms ease-in-out;
}

    .img-overlay-wrap img {
        display: block;
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .img-overlay-wrap svg {
        position: absolute;
        top: 0;
        left: 0;
    }

    .img-overlay-wrap:hover {
        transform: scale(1.1, 1.1);
    }

img {
    border-radius: 50%;
    background-color: lightgray;
}

/*UBIKSchedule.razor styles*/
.e-gantt .e-reload::before {
    content: '\e99d';
}

.e-gantt .e-sort::before {
    content: '\e74b';
}

.e-gantt .e-gantt-chart .e-custom-event-marker {
    width: 1px;
    border-left: 2px red dotted;
}