        .scode-cookie-simple {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            padding: 12px 20px;
            box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
            text-align: center;
            z-index: 1000;
            font-family: 'Arial', sans-serif;
        }
        .scode-cookie-simple p {
            margin: 0 0 12px 0;
            color: #555;
            font-size: 14px;
            line-height: 1.4;
        }
        .scode-cookie-simple button {
            background: #000;
            color: #fff;
            border: none;
            padding: 8px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 14px;
            margin: 0 5px;
        }
        .scode-cookie-simple button:hover {
            opacity: 0.9;
        }
        
        @media (max-width: 480px) {
            .scode-cookie-simple button {
                display: block;
                width: 100%;
                margin: 5px 0;
            }
        }