﻿@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;
}

.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);
    }
}
