﻿.cookie-banner {
    position: fixed;
    bottom: 141px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    padding: 20px;
    height: auto;
    min-height: 115px;
    border: 1px solid rgba(255, 232, 23, 0.7);
    border-radius: 60px;
    padding: 20px 50px;
    background-color: rgba(255, 232, 23, 0.4);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    box-sizing: border-box;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    font-family: Arial, sans-serif;
    color: #000;
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 15px;
    margin: 15px;
    left: unset;
    transform: unset;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.cookie-text {
    color: white;
    flex: 1;
    padding-left: 20px;
    max-width: none;
}

.cookie-text h2 {
    margin: 0 0 8px 0;
    font-weight: 700;
    font-size: 1.5em;
}

.cookie-text p {
    margin: 0;
    font-weight: 400;
    font-size: 1em;
    line-height: 1.4;
}

.cookie-text a {
    color: yellow;
    text-decoration: underline;
}

.accept-button {
    background-color: black;
    color: white;
    border: none;
    border-radius: 60px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    margin-left: 16px;
}

.accept-button:hover {
    background-color: #222;
}