#cookie-banner .buttons .btn {
    min-width: 150px;
}

#cookie-banner #accept-cookies{
    background-color: #4CAF50; /* Green */
    color: white;
    border: none;
}

#cookie-banner .buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#cookie-banner.hidden {
    display: none;
}

#cookie-banner{
    position: fixed;
    bottom: 0;
    right: 48px;
    background: #fff;
    padding: 16px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    max-width: 400px;
}

@media (max-width: 860px) {
  #cookie-banner{
    max-width: 100%;
    width: 100%;
    left: 0;
    right: 0;
  }
}