.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid rgb(148, 207, 150);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.10);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    z-index: 10000;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 0.88rem;
    color: #3a5040;
}

.cookie-banner p {
    flex: 1;
    min-width: 200px;
    margin: 0;
    line-height: 1.5;
    color: #4a6b4e;
}

.cookie-banner a {
    color: #3a7d40;
}

.cookie-banner a:hover {
    color: #1e3320;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.5rem 1.1rem;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: filter 0.15s;
    white-space: nowrap;
}

.cookie-btn:hover {
    filter: brightness(0.92);
}

.cookie-btn-accept {
    background-color: #85c988;
    color: white;
}

.cookie-btn-decline {
    background-color: transparent;
    color: #6a8b6e;
    border: 1px solid #b8deba;
}
