﻿body {
}
.inputclass {
    width: 100%;
    height: 37px;
    padding-left: 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-family: Arial;
    font-size: small;
}
#overlay {
    background: #ffffff;
    color: #666666;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 5000;
    top: 0;
    left: 0;
    float: left;
    text-align: center;
    padding-top: 25%;
    opacity: .80;
}

.dashboard-card {
    padding: 20px;
    color: white;
    border-radius: 8px;
    margin-bottom: 20px;
    
}

.dashboard-card h3 {
    margin-bottom: 15px;
}

/* Additional responsive styling */
@media (max-width: 576px) {
    .dashboard-card h3 {
        font-size: 1.5rem;
    }

    .dashboard-card p {
        font-size: 1rem;
    }
}

.tile-stats {
    position: relative;
    display: block;
    margin-bottom: 12px;
    border: 1px solid #E4E4E4;
    -webkit-border-radius: 5px;
    overflow: hidden;
    padding-bottom: 5px;
    -webkit-background-clip: padding-box;
    -moz-border-radius: 5px;
    -moz-background-clip: padding;
    border-radius: 5px;
    background-clip: padding-box;
    background: #FFF;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}
.elevation-0 {
    box-shadow: none !important;
}

.elevation-1 {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24) !important;
}

.elevation-2 {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23) !important;
}

.elevation-3 {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23) !important;
}

.elevation-4 {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22) !important;
}

.elevation-5 {
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22) !important;
}
.info-box-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.8;
    flex: 10;
    padding: 0 10px;
    margin-top: 15px;
}

.info-box-number {
    display: block;
    margin-top: .25rem;
    font-weight: 100;
}


.info-box-text {
    display: block;
    font-size: 14px;
    /*overflow: hidden;*/
    text-overflow: ellipsis;
    white-space: nowrap;
}

.info-box .info-box-icon {
    border-radius: 0.25rem;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.875rem;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 70px;
    margin-top: 12px;
    margin-bottom: 12px;
    padding: 10px;
    color: white;
}




