#privacy-consent { position: fixed; bottom: 0; left: 50%; transform: translateX(-50%); width: 61%; background-color: #2c2c2c; color: #ffffff; padding: 12px 16px; box-sizing: border-box; display: none; z-index: 10001; border-radius: 8px 8px 0 0; font-family: Arial, sans-serif; font-size: 14px; line-height: 1.4; } #privacy-consent p { margin: 0 0 10px 0; padding: 0; } #privacy-consent a { color: #4a90e2; text-decoration: underline; } #privacy-consent a:hover { color: #6bb6ff; } .consent-buttons { display: flex; gap: 8px; justify-content: center; } .consent-buttons button { background-color: #4a90e2; color: #ffffff; border: none; padding: 8px 16px; border-radius: 4px; cursor: pointer; font-size: 13px; transition: background-color 0.3s; } .consent-buttons button:hover { background-color: #357abd; } .consent-buttons button:last-child { background-color: #666666; } .consent-buttons button:last-child:hover { background-color: #555555; } @media (max-width: 768px) { #privacy-consent { width: 90%; padding: 10px 12px; font-size: 13px; } .consent-buttons { flex-direction: column; gap: 6px; } .consent-buttons button { padding: 10px; } } @media (max-width: 480px) { #privacy-consent { width: 95%; padding: 8px 10px; } }