/**
 * MIT License
 *
 * Copyright (c) Since 2025 BNP Paribas
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in all
 * copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 *
 * @author     We+
 * @copyright  Since 2025 BNP Paribas
 * @license    MIT https://spdx.org/licenses/MIT
 */

.demo-banner {
    background: #ff9800;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: bold;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    margin-bottom: 10px;
}

.demo-banner .demo-text {
    display: inline-block;
    animation: blink 4s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

.demo-info {
    background: #fff4e0;
    border: 1px solid #ffcc80;
    border-radius: 8px;
    text-align: center;
    color: #7a4d00;
}

.demo-info a {
    font-weight: bold;
    text-decoration: underline;
}
