#privacy-consent { position: fixed; bottom: 20px; left: 20px; width: 320px; max-width: calc(100vw - 40px); background-color: #ffffff; border: 1px solid #e0e0e0; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.15); padding: 16px; box-sizing: border-box; z-index: 10001; font-family: Arial, sans-serif; font-size: 14px; line-height: 1.4; display: none; } #privacy-consent p { margin: 0 0 12px 0; color: #333; } #privacy-consent a { color: #0066cc; text-decoration: none; } #privacy-consent a:hover { text-decoration: underline; } #privacy-consent .cookie-buttons { display: flex; gap: 8px; justify-content: flex-end; } #privacy-consent button { padding: 8px 16px; border: none; border-radius: 4px; cursor: pointer; font-size: 13px; font-weight: 500; transition: background-color 0.2s; } #privacy-consent .accept-btn { background-color: #0066cc; color: white; } #privacy-consent .accept-btn:hover { background-color: #0052a3; } #privacy-consent .decline-btn { background-color: #f5f5f5; color: #666; border: 1px solid #ddd; } #privacy-consent .decline-btn:hover { background-color: #e8e8e8; } @media (max-width: 480px) { #privacy-consent { left: 10px; right: 10px; width: auto; max-width: none; } #privacy-consent .cookie-buttons { flex-direction: column; } #privacy-consent button { width: 100%; } }