﻿.mud-table-head {
    background-color: #e2e3e5;
    white-space: nowrap;
}

th.mud-table-cell {
    border: 1px solid #cbccce;
    border-bottom: 1px solid black !important;
    padding: 8px 16px;
    font-weight: bold;
}

.mobileDevice {
    display: none;
}

@media only screen and (max-width: 1184px) {
    .mobileDevice {
        display: table-cell;
    }

    th.mud-table-cell.mobileDevice {
        border: 1px solid #cbccce;
        border-bottom: 1px solid black !important;
        padding: 8px 16px;
        font-weight: bold;
    }
}

.desktopDevice {
    display: none;
} 

@media only screen and (min-width: 1184px) {
    .desktopDevice {
        display: table-cell;
    }

    th.mud-table-cell.desktopDevice {
        border: 1px solid #cbccce;
        border-bottom: 1px solid black !important;
        padding: 8px 16px;
        font-weight: bold;
    }
}

.table-wrapper {
    border: 1px solid #cbccce;
    width: 100%;
    height: 480px;
    overflow: auto;
}

/*Breadcrumbs*/
a.as-breadcrumb {
    transition: all 0.3s ease;
    padding: 5px;
    text-decoration: none;
    font-weight: normal;
    color: rgba(0, 61, 110, 1) !important;
}

a.as-breadcrumb:hover {
    background-color: rgb(235, 235, 235);
}

span.as-breadcrumb-divider {
    padding: 5px 5px;
    color: rgba(0, 61, 110, 1) !important;
}

/* Nav Buttons */
.as-nav-button-danger {
    border-radius: 0;
    color: #dc3545;
}

.as-nav-button-success {
    color: #198754;
    border-radius: 0;
}

.as-nav-button-danger:hover {
    background-color: #dc3545;
    color: white;
}

.as-nav-button-success:hover {
    background-color: #198754;
    color: white;
}