        .cookie-message {
            position: fixed;
            z-index: 1000;
            bottom: 20px;
            left: 20px;
            right: 20px;
            min-width: 280px;
            max-width: 350px;
            padding: 0;
            font-family: Arial, sans-serif;
            animation: fadeIn 0.5s ease-in-out;
            display: none;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .cookie-message-inner {
            display: grid;
	    border: #ccc 1px solid;
            justify-items: start;
            grid-gap: 15px;
            font-size: 14px;
            padding: 15px;
            line-height: 1.5;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.15);
        }
        
        .cookie-message-text {
            color: #5a5a5a;
        }
        
        .cookie-message-link {
            color: #01356f;
            text-decoration: underline;
        }
        
        .cookie-message-inner .button {
            background: #fff;
            color: #0551BC;
	    border: #0551BC 2px solid;
            padding: 4px 14px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 14px;
            transition: all 0.3s ease;

        }
        
        .cookie-message-inner .button:hover {
            background-color: #ddd;
            color: #000;
        }

        @media (max-width: 900px) {
            .cookie-message {
                left: 10px;
                bottom: 10px;
            }
        }
        
        @media (max-width: 400px) {
            .cookie-message {
                max-width: 100%;
                left: 10px;
                right: 10px;
                bottom: 10px;
            }
        }