#cookie-consent-modal {  position: fixed;  bottom: 10px;  right: 10px;  width: 300px;  background-color: #333;  color: #fff;  padding: 15px;  border-radius: 5px;  box-shadow: 0 4px 8px rgba(0,0,0,0.2);  display: flex;  justify-content: space-between;  align-items: center;  z-index: 1000;} #cookie-consent-modal button {  background-color: #4caf50;  color: #fff;  border: none;  padding: 10px;  cursor: pointer;  border-radius: 3px;} @media (max-width: 768px) {  #cookie-consent-modal {   width: 90%;   bottom: 5px;   right: 5px;  }}