/* Allgemein Hilfreiche CSS */
.link-no-decoration {
    text-decoration: none;
    color: inherit;
}

.rio-nav-header{
    margin-left: 1em;
    color: white;
    font-weight: bold;
}

/* Skeleton Loading Styles */
.skeleton {
    display: inline-block;
    height: 1em;
    width: 100%;
    background: #eee;
    border-radius: 4px;
}

.skeleton-loader {
    display: inline-block;
    width: 100%;
    height: 1em;
    background: #eee;
    border-radius: 4px;
    animation: pulse 1.5s infinite ease-in-out;
    margin-bottom: 0.5em;
}

.content {
    width: 100%;
}

@keyframes pulse {
    0% {
        background-color: #eee;
    }
    50% {
        background-color: #f5f5f5;
    }
    100% {
        background-color: #eee;
    }
}

/* Login Page */
.riecken-login-box {
    height: 100%;
    padding-top: 60px;
}
