.privacy-consent { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: 77%; max-width: 600px; background: #ffffff; border: 1px solid #e0e0e0; border-radius: 8px 8px 0 0; box-shadow: 0 -2px 10px rgba(0,0,0,0.1); padding: 16px; z-index: 10001; display: none; font-family: Arial, sans-serif; font-size: 14px; color: #333; } .privacy-consent p { margin: 0 0 12px 0; line-height: 1.4; } .privacy-consent a { color: #007bff; text-decoration: underline; } .privacy-consent a:hover { text-decoration: none; } .privacy-consent .cookie-buttons { display: flex; gap: 8px; justify-content: center; } .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: #28a745; color: white; } .privacy-consent .accept-btn:hover { background: #218838; } .privacy-consent .decline-btn { background: #6c757d; color: white; } .privacy-consent .decline-btn:hover { background: #545b62; } @media (max-width: 768px) { .privacy-consent { width: 90%; padding: 12px; font-size: 13px; } .privacy-consent .cookie-buttons { flex-direction: column; } .privacy-consent button { padding: 10px; } }