@charset "utf-8";
/* CSS Document */
/* Hintergrund-Overlay */
        #popup-overlay {
            position: fixed;
            top: 0;        
            left: 0;
            width: 100%;
            height: 100%;
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;   
        }

        /* Popup-Fenster */
            #popup {
            padding: 20px 30px;
            background-color: #fff; 
            max-width: 490px;
            width: 90%;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 8px solid;         
            border-image: linear-gradient(45deg,violet, blue, cyan, green, yellow, orange, red) 1;
        }

        #popup button {
            margin-top: 15px;
            padding: 8px 16px;
            border: none;
            background: #59b30d;
            color: white;
            border-radius: 4px;
            cursor: pointer;
        }

        #popup button:hover {
            background: #0056b3;
        }
