﻿#cookie-banner {
    position: fixed;
    inset: 0; /* top:0; right:0; bottom:0; left:0; */
    z-index: 9999;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner-content {
    width: 60vw;
    max-width: 600px;
    min-width: 280px;
    /*border: 4px solid red;*/
    /*border: 1px solid yellow;*/
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.cookie-banner-inner {
    width: 100%;
    border: 3px solid silver;
    border-radius: 12px;
    background: rgba(34, 34, 34, 0.98);
    color: #fff;
    padding: 32px 28px;
    min-height: 160px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

#cookie-banner-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.cookie-text {
    margin: 10px 0 18px 0;
    font-size: 1.05rem;
}

#cookie-banner button {
    margin: 0 10px;
    min-width: 100px;
    font-size: 1rem;
    border-radius: 6px;
    border: none;
    padding: 8px 18px;
    cursor: pointer;
    transition: background 0.2s;
}

#cookie-ok-btn {
    background: #28a745;
    color: #fff;
}

    #cookie-ok-btn:hover {
        background: #218838;
    }

#cookie-decline-btn {
    background: #dc3545;
    color: #fff;
}

    #cookie-decline-btn:hover {
        background: #b52a37;
    }

@media (max-width: 700px) {
    .cookie-banner-content {
        width: 95vw;
        max-width: 98vw;
        padding: 0;
    }

    .cookie-banner-inner {
        padding: 16px 6px;
    }
}
