.privacy-consent-popup { position: fixed; bottom: 10px; left: 10px; right: 10px; width: calc(100% - 20px); max-width: 90%; background-color: #ffffff; border: 1px solid #e0e0e0; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); padding: 15px; box-sizing: border-box; z-index: 10001; display: none; } .privacy-consent-popup p { margin: 0 0 12px 0; font-size: 14px; color: #333; line-height: 1.4; } .privacy-consent-popup a { color: #007bff; text-decoration: underline; } .privacy-consent-popup a:hover { color: #0056b3; } .privacy-consent-popup .cookie-buttons { display: flex; gap: 8px; flex-wrap: wrap; } .privacy-consent-popup button { background-color: #007bff; color: white; border: none; padding: 8px 16px; border-radius: 4px; cursor: pointer; font-size: 13px; flex: 1; min-width: 80px; } .privacy-consent-popup button:hover { background-color: #0056b3; } .privacy-consent-popup button.decline { background-color: #6c757d; } .privacy-consent-popup button.decline:hover { background-color: #545b62; } @media (min-width: 768px) { .privacy-consent-popup { max-width: 500px; left: 50%; transform: translateX(-50%); } .privacy-consent-popup .cookie-buttons { justify-content: flex-end; } .privacy-consent-popup button { flex: none; min-width: 90px; } }