﻿

.license-warning-container {
    position: fixed; /* Full-page overlay */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #FFFFFF; /* White background */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    z-index: 1000; /* Ensure it overlays other elements */
}

.license-warning {
    font-size: 1.8rem; /* Keep text prominent */
    font-weight: bold;
    color: #D32F2F; /* Attention-grabbing red color */
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    animation: fadeIn 0.5s ease-in-out;
    background-color: rgba(255, 235, 238, 0.9); /* Subtle light red background */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add some depth */
    max-width: 80%; /* Restrict width for readability */
    line-height: 1.5; /* Improve readability */
}


/* Animation for pulsing effect */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}
