.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    max-width: 60%;
}

.cookie-banner .cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-banner button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
}

.cookie-banner .accept-all {
    background: #007bff;
    color: white;
}

.cookie-banner .accept-necessary {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.cookie-banner .cookie-settings {
    background: transparent;
    color: #fff;
    text-decoration: underline;
    padding: 0;
}

.cookie-banner button:hover {
    opacity: 0.9;
}
