﻿.chartLoadingWrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.chartLoadingTarget {
    position: relative;
    background: #DEE2E6;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1.618 / 1;
}

/* Enhanced shimmer effect */
.chartLoadingTarget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( 30deg, rgba(0, 188, 212, 0) 35%, rgba(0, 188, 212, 0.5) 50%, rgba(0, 188, 212, 0) 65% );
    background-size: 200% 100%;
    animation: shimmer 5s linear infinite;
}

/* Keyframes for shimmer */
@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 100% 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

.fade-in {
    animation: fadeIn 300ms ease forwards;
}

.fade-out {
    animation: fadeOut 300ms ease forwards;
}

.no-uppercase-only-context-menu {
    text-transform: none !important;
}

.edit-plot-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f4f8;
    border: 2px dashed #ccc;
    position: relative;
}

.edit-plot-message {
    font-size: 1.5rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.edit-icon {
    font-size: 2rem;
}

.masked-background {
    display: grid;
    place-items: center;
    height: 100%;
    padding: 20px;
    /* Your existing animated background should be here */
}

.masked-text {
    font-size: 4rem;
    font-weight: bold;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-container {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
