﻿ul.validation-errors {
    padding: 30px;
    position: fixed;
    bottom: 10px;
    background-color: wheat;
    color: red;
    text-align: left;
}

/* Skeleton loading styles */
.skeleton {
    background-color: #e0e0e0;
    border-radius: 4px;
    display: inline-block;
    height: 1em;
    line-height: 1;
    width: 100%;
    animation: pulse 1.5s infinite ease-in-out;
}

.skeleton-text {
    width: 100%;
    height: 1em;
    margin-bottom: 0.5em;
}

.skeleton-rect {
    width: 100%;
    height: 200px;
    margin-bottom: 0.5em;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}

.dashboard {
    padding: 10px;
}

@media (min-width: 768px) {
    nav.nav {
        width: auto;
    }
}

@media (max-width: 768px) {
    ul.validation-errors {
        position: unset;
        margin-top:10px;

    }

    nav.nav {
        position: fixed;
    }
}

a {
    text-decoration: none;
}
