.privacy-consent { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: 90%; max-width: 600px; background-color: #ffffff; border: 1px solid #e0e0e0; border-radius: 8px 8px 0 0; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); padding: 15px; box-sizing: border-box; z-index: 10001; display: none; margin: 0 10px; } .privacy-consent p { margin: 0 0 15px 0; font-size: 14px; color: #333; line-height: 1.4; } .privacy-consent a { color: #007bff; text-decoration: underline; } .privacy-consent a:hover { color: #0056b3; } .privacy-consent-buttons { display: flex; gap: 10px; justify-content: flex-end; } .privacy-consent button { padding: 8px 16px; border: none; border-radius: 4px; cursor: pointer; font-size: 14px; transition: background-color 0.2s; } .privacy-consent .accept-btn { background-color: #28a745; color: white; } .privacy-consent .accept-btn:hover { background-color: #218838; } .privacy-consent .decline-btn { background-color: #6c757d; color: white; } .privacy-consent .decline-btn:hover { background-color: #5a6268; } @media (max-width: 480px) { .privacy-consent { width: calc(100% - 20px); margin: 0 10px; } .privacy-consent-buttons { flex-direction: column; } .privacy-consent button { width: 100%; } }