﻿.tile-box-value {
    font-size: 20px;
    font-weight: 600;
    text-align: right;
}

.tile-box {
    width: 100%;
    margin: 8px 10px 8px 10px;
    padding: 2px 10px 2px 10px;
    border-radius: 10px;
    box-shadow: 5px 5px 20px;
}

.col-name {
    white-space: nowrap;
    width: auto;
}

.col-value {
    min-width: 10em;
    white-space: nowrap;
    width: 0px;
}

.col-date {
    white-space: nowrap;
    width: 1em;
}

.tile-row {
    /*padding-right: 20px;*/
}

.tile-box-white {
    background-color: white;
}

.tile-box-red {
    background-color: orangered;
}

.tile-box-blue {
    background-color: cornflowerblue;
}

.tile-box-value-gray {
    color: dimgrey;
}

.tile-box-value-white {
    color: white;
}

.datachart {
    height: 500px;
}

@media (min-width: 576px) {
    .tile-box-value {
        font-size: 25px;
        text-align: right;
    }
}

@media (min-width: 1024px) {
    .tile-box-value {
        font-size: 30px;
        text-align: center;
    }

    .tile-box {
        width: min-content;
    }

    .tile-row {
        display: inline-block;
        padding-right: 0px;
    }
}