        /* Stile für das Pop-up */
        #goodride-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        #goodride-popup {
            background-color: #ffffff;
            padding: 20px 20px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            width: 90%;
            max-width: 80%;
            position: relative;
            max-height: 80vh;
            overflow-y: auto;
            text-align: left;
            line-height: 1.6;
        }
		
		#goodride-popup * {
			font-size:20px;
		}
		
	    #goodride-popup h2 {
			font-size:26px;
		}

        #close-popup-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 28px;
            color: #888;
            cursor: pointer;
            padding: 0;
            line-height: 1;
        }

        #close-popup-btn:hover {
            color: #333;
        }