#gdpr-popup { position: fixed; bottom: 0px; /*right: 20px;*/ background-color: #fff; padding: 18px; width: unset; max-width: 90%; border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.25); display: none; z-index: 2147489999; font-size: 14px; } /* Tlačítka */ .gdpr-accept { margin: 10px 0; background-color: #007c65; color: white; padding: 10px 14px; border-radius: 6px; width: 100%; border: none; cursor: pointer; } .gdpr-accept:hover { background-color: #165932; } .gdpr-reject { background-color: #000; color: white; padding: 10px 14px; border-radius: 6px; width: 100%; border: none; cursor: pointer; transition: background-color 0.3s ease; } .gdpr-reject:hover { background-color: #c33909; } /* Mobilní úprava */ @media (max-width: 768px) { #gdpr-popup { bottom: 10px; right: 10px; width: calc(100% - 20px); } }