#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1B4332;
    color: #fff;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    z-index: 9999;
    font-family: var(--font-main, Arial, sans-serif);
    font-size: 14px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.25);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    line-height: 1.5;
}

#cookie-banner a {
    color: #a8d8bf;
    text-decoration: underline;
}

#cookie-banner a:hover {
    color: #fff;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

#cookie-accept {
    background: #fff;
    color: #1B4332;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;
    transition: background 0.2s;
}

#cookie-accept:hover {
    background: #d4edda;
}

#cookie-decline {
    background: transparent;
    color: #ccc;
    border: 1px solid #ccc;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    transition: color 0.2s, border-color 0.2s;
}

#cookie-decline:hover {
    color: #fff;
    border-color: #fff;
}

@media (max-width: 600px) {
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 16px;
        gap: 12px;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
