#privacy-consent { position: fixed; bottom: 20px; right: 20px; width: 320px; background-color: #2c2c2c; color: #ffffff; padding: 15px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.3); 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; padding: 0; } #privacy-consent a { color: #4CAF50; text-decoration: underline; } #privacy-consent a:hover { color: #66BB6A; } .consent-buttons { display: flex; gap: 8px; justify-content: flex-end; } .consent-buttons button { background-color: #4CAF50; color: white; border: none; padding: 8px 16px; border-radius: 4px; cursor: pointer; font-size: 13px; transition: background-color 0.3s; } .consent-buttons button:hover { background-color: #45a049; } .consent-buttons button:last-child { background-color: #757575; } .consent-buttons button:last-child:hover { background-color: #616161; } @media (max-width: 768px) { #privacy-consent { width: calc(100% - 40px); right: 20px; left: 20px; bottom: 20px; } .consent-buttons { flex-direction: column; } .consent-buttons button { width: 100%; } }