﻿.cookie-banner {
    opacity: .99;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #eaeaea;
    border-top: 1px solid #ccc;
    padding: 1rem;
    z-index: 999999;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
    .cookie-banner div {
        width: 100%;
    }
    .cookie-banner p {
        margin: 1rem 0;
        font-size: 1rem;
        line-height: 1.5;
    }

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    width: 100%;
/*    justify-content: end;*/
}

    .cookie-buttons button {
        padding: 0.5rem 1.5rem;
        font-weight: bold;
        border: none;
        cursor: pointer;
        border-radius: 4px;
        width: calc(50% - .5rem);
        max-width: 300px;
        border: 1px solid #ddd5d5;
    }

.accept-btn {
    background-color: #002f6c;
    color: white;
}

.deny-btn {
    background-color: #e0e0e0;
    color: #333;
}

.cookie-banner a {
    color: #0044cc;
    text-decoration: none;
    margin-top: 0.5rem;
}

@media (min-width: 600px) {
    .cookie-banner {
        justify-content: space-between;
        align-items: center;
    }

        .cookie-banner p {
            flex: 1;
            padding-right: 1rem;
        }

        .cookie-banner a {
            margin-top: 0;
        }
}
