.cookie-consent-container {
position: fixed;
opacity: 0.95;
bottom: -100%;
left: 0;
right: 0;
width: 400px;
background: #fff;
z-index: 9999;
margin: 0 auto;
border-radius: 7px;
box-shadow: 0px 21px 40px rgba(50, 50, 50, 0.5);
transition: bottom 1.5s ease-in-out;
}
.cookie-consent-container.show {
bottom: 10px;
}
.cookie-consent-content {
margin: 0 auto;
padding: 15px;
text-align: center;
position: relative;
}
.cookie-consent-content p {
margin: 0 0 10px 0;
line-height: 1.5;
color: #333;
font-size: 14px;
}
.cookie-consent-button {
display: inline-block;
padding: 10px 25px;
background: #529b94;
color: #fff;
text-decoration: none;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
transition: background 0.3s ease;
border: none;
}
.cookie-consent-button:hover {
background: #478a83;
color: #fff;
}
@media (max-width: 768px) {
.cookie-consent-content {
padding: 10px;
}
.cookie-consent-content p {
font-size: 13px;
}
}