/**
 * cache_status.css for FME CacheWarmer
 * @copyright © FME fmeextensions.com. All rights reserved.
 * @author Aliyan Nasir <support@fmeextensions.com>
 * @package FME
 * @license See COPYING.txt for license details.
 */

.cache-status {
    margin: 0%;
    padding: 0%;
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    font-size: 1.3rem;
    outline: 5px solid rgba(74, 69, 66, .6);
    border-radius: 0;
    z-index: 1000000;
    box-shadow: 2px 2px 2px 0 rgba(50, 50, 50, .25);
    max-width: 30rem;
    min-width: 30rem;
    height: auto;
    background-color: rgba(255, 255, 255, 1);
    border: 2px solid black;
}

.success {
    background-color: #185b00;
}

.fail {
    background-color: #e22626;
}

.heading h4{
    color: white;
    margin: 0%;
    padding: 0%;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status {
    margin: 0%;
    padding: 0%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pageInfo {
    display: flex;
    flex-direction: column;
    text-align: right;
}
.pageInfo p {
    overflow-x: scroll;
}