#cookie-consent-modal {
 position: fixed;
 bottom: 20px;
 right: 20px;
 background-color: #202020;
 color: #fff;
 padding: 15px;
 border-radius: 5px;
 box-shadow: 0 0 10px rgba(0,0,0,0.5);
 z-index: 1000;
 width: 300px;
}
#cookie-consent-modal button {
 background-color: #4CAF50;
 color: white;
 border: none;
 padding: 10px 20px;
 border-radius: 5px;
 cursor: pointer;
}
@media(max-width: 480px) {
 #cookie-consent-modal {
 width: 90%;
 right: 5%;
 }
}