/*
Theme Name: NEM Hello Elementor Child
Theme URI: https://nemdistributie.ro
Template: hello-elementor
Author: Web Ventures
Author URI: https://webventures.ro
Version: 1.0.1
Updated: 2025-06-13 11:50:10

*/

.page .elementor-widget-login .elementor-widget-container {
    max-width: 400px;
}

.elementor-login .elementor-login-separator,
.elementor-login .elementor-register {
    font-size: .85em;
}

/* Basic Skeleton Styles */
.skeleton-wrapper {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 1140px;
    margin: 40px auto;
    overflow: hidden;
    /* Important for the animation */
    position: relative;
    /* For pseudo-elements */
}

/* Animation effect */
.skeleton-wrapper::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -150%;
    height: 100%;
    width: 150%;
    background: linear-gradient(to right, transparent 0%, #e8e8e8 50%, transparent 100%);
    animation: loading-animation 1.5s infinite forwards;
    animation-timing-function: ease-in-out;
}

@keyframes loading-animation {
    0% {
        left: -150%;
    }

    100% {
        left: 100%;
    }
}

/* Skeleton content blocks */
.skeleton-header {
    margin-bottom: 30px;
}

.skeleton-line {
    background-color: #f0f0f0;
    border-radius: 4px;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
}

.skeleton-line-title {
    height: 30px;
    width: 60%;
    margin-bottom: 15px;
}

.skeleton-line-subtitle {
    height: 20px;
    width: 40%;
}

.skeleton-chart {
    height: 250px;
    width: 100%;
    background-color: #f0f0f0;
    border-radius: 8px;
    margin-bottom: 30px;
}

.skeleton-data-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Single column for rows */
    gap: 15px;
}

.skeleton-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skeleton-line-small {
    height: 16px;
    width: 45%;
    /* Two small lines per row */
}