.cookie-banner {
      bottom: 0;
      background-color: #ffe0b2;
      padding: 15px;
      text-align: center;
      border-radius: 10px; /* Более круглые края */
      margin: 10px;
}

.cookie-banner p {
    font-size: 16px;
    margin: 2px;
    color: black;
    font-weight: bold;
}

.cookie-banner a {
    color: #333;
    text-decoration: underline;
}

.privacy-policy-content {
    padding: 30px;
}

#acceptCookieButton {
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    padding: 12px 24px; /* Padding inside the button */
    border: none; /* Remove borders */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Increase font size */
    cursor: pointer; /* Pointer/hand icon on hover */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transition for background color and transform */
}

#acceptCookieButton:hover {
    background-color: #45a049; /* Darker green on hover */
    transform: scale(1.05); /* Slightly enlarge the button on hover */
}

#acceptCookieButton:active {
    background-color: #3e8e41; /* Even darker green on click */
    transform: scale(1); /* Reset size on click */
}

#acceptCookieButton:focus {
    outline: none; /* Remove outline on focus */
    box-shadow: 0 0 5px #4CAF50; /* Add a green shadow around the button */
}
