﻿/* fixes weird printing issues */
@page {
    size: auto;
}

@media print {
    th, td {
        white-space: normal !important;
    }
}

body {
    font-size: 14px;
}

.wendella-blue {
    background-color: rgba(16, 41, 77, 1) !important;
}

/* danger, success and info are legacy from bootstrap3*/
.danger {
    background-color: rgba(255, 0, 0, 0.2);
}

.success {
    background-color: rgba(0, 255, 0, 0.2);
}

.info {
    background-color: rgba(0, 0, 0, 0.2);
}

/* EmployeeTable Legend */
.legend ul {
    margin: 0;
    padding: 0;
    display: inline-block;
    list-style: none;
}

    .legend ul li {
        display: inline-block;
        width: 100px;
        margin-bottom: 6px;
        text-align: center;
        font-size: 80%;
        list-style: none;
    }

    .legend ul.legend-labels li span {
        display: inline-block;
        height: 15px;
        width: 100px;
    }

.header-padding {
    padding-top: 5px;
    padding-bottom: 5px;
}

.no-side-margin {
    margin-left: 0px;
    margin-right: 0px;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}

.hover_img a {
    position: relative;
}

    .hover_img a span {
        position: absolute;
        display: none;
        z-index: 99;
    }

    .hover_img a:hover span {
        display: block;
        left: 100px;
        top: -20px
    }